1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
| cc_defaults {
| name: "libnativebridge-defaults",
| cflags: [
| "-Werror",
| "-Wall",
| ],
| cppflags: [
| "-fvisibility=protected",
| ],
| header_libs: ["libnativebridge-headers"],
| export_header_lib_headers: ["libnativebridge-headers"],
| }
|
| cc_library_headers {
| name: "libnativebridge-headers",
|
| host_supported: true,
| export_include_dirs: ["include"],
| }
|
| cc_library {
| name: "libnativebridge",
| defaults: ["libnativebridge-defaults"],
|
| host_supported: true,
| srcs: ["native_bridge.cc"],
| header_libs: [
| "libbase_headers",
| ],
| shared_libs: [
| "liblog",
| ],
| // TODO(jiyong): remove this line after aosp/885921 lands
| export_include_dirs: ["include"],
|
| target: {
| android: {
| version_script: "libnativebridge.map.txt",
| },
| linux: {
| version_script: "libnativebridge.map.txt",
| },
| },
|
| stubs: {
| symbol_file: "libnativebridge.map.txt",
| versions: ["1"],
| },
| }
|
| // TODO(b/124250621): eliminate the need for this library
| cc_library {
| name: "libnativebridge_lazy",
| defaults: ["libnativebridge-defaults"],
|
| host_supported: false,
| srcs: ["native_bridge_lazy.cc"],
| required: ["libnativebridge"],
| }
|
| subdirs = ["tests"]
|
|