xref: /aosp_15_r20/frameworks/native/services/surfaceflinger/FrameTimeline/Android.bp (revision 38e8c45f13ce32b0dcecb25141ffecaf386fa17f)
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_native_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_native_license"],
8    default_team: "trendy_team_android_core_graphics_stack",
9}
10
11cc_library_static {
12    name: "libframetimeline",
13    defaults: ["surfaceflinger_defaults"],
14    srcs: [
15        "FrameTimeline.cpp",
16    ],
17    header_libs: [
18        "libscheduler_headers",
19    ],
20    shared_libs: [
21        "[email protected]",
22        "libbase",
23        "libcutils",
24        "liblog",
25        "libgui",
26        "libtimestats",
27        "libui",
28        "libutils",
29    ],
30    static_libs: [
31        "libperfetto_client_experimental",
32        "libsurfaceflinger_common",
33    ],
34    export_include_dirs: ["."],
35}
36