blob: 589c00f3fc6d1c6ac2e43c435d35ef7815cf97ad [file] [log] [blame]
Yogeshwar Nagaraj19501e52019-12-19 11:10:01 -08001// Copyright (C) 2019 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15cc_library {
16 name: "computepipe_prebuilt_graph",
17
18 cflags: [
19 "-Wall",
20 "-Werror",
21 "-Wextra",
22 "-Wno-unused-parameter",
23 ],
24
25 export_include_dirs: ["include"],
26 static_libs: [
27 "computepipe_runner_component",
28 "libcomputepipeprotos",
29 ],
30
31 header_libs: ["computepipe_runner_includes"],
32 include_dirs: [
33 "packages/services/Car/computepipe",
34 "packages/services/Car/computepipe/runner/graph",
35 ],
36
37 shared_libs: [
38 "libbase",
39 "libdl",
40 "liblog",
41 "libutils",
42 "libprotobuf-cpp-lite",
43 ],
44
45 srcs: [
46 "PrebuiltGraph.cpp",
47 ],
48}