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
597 B
30 lines
597 B
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libteeui_localization",
|
|
defaults: ["keystore_defaults"],
|
|
export_include_dirs: ["include"],
|
|
srcs: [
|
|
"ConfirmationUITranslations.cpp",
|
|
],
|
|
host_supported: true,
|
|
vendor_available: true,
|
|
}
|
|
|
|
cc_test {
|
|
name: "ConfirmationUITranslations_test",
|
|
srcs: [
|
|
"ConfirmationUITranslations-test.cpp",
|
|
],
|
|
static_libs: [
|
|
"libteeui_localization",
|
|
],
|
|
gtest: false,
|
|
host_supported: true,
|
|
cflags: [
|
|
"-ffunction-sections",
|
|
],
|
|
}
|