You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
542 B
30 lines
542 B
|
|
cc_library { |
|
name: "libion", |
|
vendor_available: true, |
|
vndk: { |
|
enabled: true, |
|
support_system_process: true, |
|
}, |
|
srcs: ["ion.c"], |
|
shared_libs: ["liblog"], |
|
local_include_dirs: [ |
|
"include", |
|
"kernel-headers", |
|
], |
|
export_include_dirs: [ |
|
"include", |
|
"kernel-headers", |
|
], |
|
cflags: ["-Werror"], |
|
} |
|
|
|
cc_binary { |
|
name: "iontest", |
|
srcs: ["ion_test.c"], |
|
static_libs: ["libion"], |
|
shared_libs: ["liblog"], |
|
cflags: ["-Werror"], |
|
} |
|
|
|
subdirs = ["tests"]
|
|
|