aboutsummaryrefslogtreecommitdiff
path: root/Android.bp
blob: bddc08abd0ce03f92607d2b8c00bc9afa27e24d5 (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//
// Copyright (C) 2017 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

subdirs = [
    "tools",
]

cc_binary {
    name: "citadel_integration_tests",
    defaults: [
        "nos_cc_hw_defaults",
    ],
    cflags: [
        "-Wno-c99-extensions",
        "-Wno-gnu-anonymous-struct",
        "-Wno-nested-anon-types",
    ],
    srcs: [
// AVB tests only run from the host.
//        "src/avb_tests.cc",
        "src/aes-cmac-tests.cc",
        "src/gtest_with_gflags_main.cc",
        "src/keymaster-import-key-tests.cc",
        "src/keymaster-import-wrapped-key-tests.cc",
// TODO: add provision tests once production-bit can be reliably reset.
//       "src/keymaster-provision-tests.cc",
        "src/nugget_core_tests.cc",
        "src/runtests.cc",
        "src/test-data/test-keys/rsa.cc",
        "src/util.cc",
        "src/weaver_tests.cc",
    ],
    include_dirs: ["."],
    header_libs: [
        "nos_headers",
    ],
    static_libs: [
        "libgmock",
        "libgtest",
    ],
    shared_libs: [
        "libcrypto",
        "libnos",
        "libnos_client_citadel",
        "libnosprotos",
        "libprotobuf-cpp-full",
        "libssl",
        "nos_app_avb",
        "nos_app_keymaster",
        "nos_app_weaver",
        "nugget_tools",
    ],
}

cc_binary {
    name: "stress_test",
    defaults: [
        "nos_cc_hw_defaults",
    ],
    srcs: [
        "src/stress_test.cc",
        "src/util.cc",
    ],
    include_dirs: ["."],
    header_libs: [
        "nos_headers",
    ],
    static_libs: [
        "libgmock",
        "libgtest",
    ],
    shared_libs: [
        "libnos",
        "libnos_client_citadel",
        "libnosprotos",
        "nugget_tools",
        "libprotobuf-cpp-full",
    ],
}