• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_team: "trendy_team_pixel_system_sw_security",
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6cc_library_static {
7    name: "libteeui_localization",
8    defaults: ["keystore_defaults"],
9    export_include_dirs: ["include"],
10    srcs: [
11        "ConfirmationUITranslations.cpp",
12    ],
13    host_supported: true,
14    vendor_available: true,
15}
16
17cc_test {
18    name: "ConfirmationUITranslations_test",
19    srcs: [
20        "ConfirmationUITranslations-test.cpp",
21    ],
22    static_libs: [
23        "libteeui_localization",
24    ],
25    gtest: false,
26    host_supported: true,
27    cflags: [
28        "-ffunction-sections",
29    ],
30}
31