Alec Mouri | 9b133ca | 2023-11-14 19:00:01 +0000 | [diff] [blame] | 1 | package { |
| 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"], |
John Reck | 38bc8a8 | 2024-02-21 17:08:27 -0500 | [diff] [blame^] | 8 | default_team: "trendy_team_android_core_graphics_stack", |
Alec Mouri | 9b133ca | 2023-11-14 19:00:01 +0000 | [diff] [blame] | 9 | } |
| 10 | |
| 11 | cc_defaults { |
| 12 | name: "libsurfaceflinger_common_defaults", |
| 13 | defaults: [ |
| 14 | "android.hardware.graphics.composer3-ndk_shared", |
| 15 | "surfaceflinger_defaults", |
| 16 | ], |
| 17 | shared_libs: [ |
| 18 | "libSurfaceFlingerProp", |
| 19 | "server_configurable_flags", |
| 20 | ], |
| 21 | static_libs: [ |
Leon Scroggins III | 10c6293 | 2024-02-01 15:35:19 -0500 | [diff] [blame] | 22 | "librenderengine_includes", |
Alec Mouri | 9b133ca | 2023-11-14 19:00:01 +0000 | [diff] [blame] | 23 | ], |
| 24 | srcs: [ |
| 25 | "FlagManager.cpp", |
| 26 | ], |
| 27 | local_include_dirs: ["include"], |
| 28 | export_include_dirs: ["include"], |
| 29 | } |
| 30 | |
| 31 | cc_library_static { |
| 32 | name: "libsurfaceflinger_common", |
| 33 | defaults: [ |
| 34 | "libsurfaceflinger_common_defaults", |
| 35 | ], |
| 36 | static_libs: [ |
| 37 | "libsurfaceflingerflags", |
| 38 | ], |
| 39 | } |
| 40 | |
| 41 | cc_library_static { |
| 42 | name: "libsurfaceflinger_common_test", |
| 43 | defaults: [ |
| 44 | "libsurfaceflinger_common_defaults", |
| 45 | ], |
| 46 | static_libs: [ |
| 47 | "libsurfaceflingerflags_test", |
| 48 | ], |
| 49 | } |