blob: 75612c0e12f1dd3659433d7f6870b3d553349135 [file] [log] [blame]
chaviw1d044282017-09-27 12:19:28 -07001cc_library_shared {
2 name: "liblayers_proto",
3 vendor_available: true,
4 export_include_dirs: ["include"],
5
6 srcs: [
7 "LayerProtoParser.cpp",
8 "layers.proto",
Adrian Roos1e1a1282017-11-01 19:05:31 +01009 "layerstrace.proto",
chaviw1d044282017-09-27 12:19:28 -070010 ],
11
Chih-Hung Hsieh94574f22018-02-07 21:14:19 -080012 arch: {
13 arm: {
14 instruction_set: "arm",
15 },
16 },
17
chaviw1d044282017-09-27 12:19:28 -070018 shared_libs: [
19 "libui",
20 "libprotobuf-cpp-lite",
21 "libbase",
22 ],
23
24 proto: {
25 export_proto_headers: true,
26 },
27
28 cppflags: [
29 "-Werror",
30 "-Wno-unused-parameter",
31 "-Wno-format",
32 "-Wno-c++98-compat-pedantic",
33 "-Wno-float-conversion",
34 "-Wno-disabled-macro-expansion",
35 "-Wno-float-equal",
36 "-Wno-sign-conversion",
37 "-Wno-padded",
38 "-Wno-old-style-cast",
39 "-Wno-undef",
40 ],
41
Chih-Hung Hsieh94574f22018-02-07 21:14:19 -080042}