1// Copyright 2006 The Android Open Source Project
2
3package {
4    default_team: "trendy_team_build_infra",
5    // See: http://go/android-license-faq
6    // A large-scale-change added 'default_applicable_licenses' to import
7    // all of the 'license_kinds' from "system_extras_tests_license"
8    // to get the below license kinds:
9    //   SPDX-license-identifier-Apache-2.0
10    default_applicable_licenses: ["system_extras_tests_license"],
11}
12
13cc_test {
14    name: "time-unit-tests",
15    cflags: [
16        "-fstack-protector-all",
17        "-g",
18        "-Wextra",
19        "-fno-builtin",
20    ],
21    srcs: [
22        "rtc_test.cpp",
23    ],
24    shared_libs: [
25        "libbase",
26    ],
27}
28
29cc_test {
30    name: "timetest",
31    srcs: ["timetest.c"],
32    cflags: [
33        "-Wall",
34        "-Werror",
35    ],
36    static_executable: true,
37    static_libs: ["libc"],
38}
39