summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAditya Choudhary <caditya@google.com>2024-02-02 13:57:37 +0000
committerAditya Choudhary <caditya@google.com>2024-02-02 13:57:37 +0000
commitdaf7f8caed3b8bf8120d5cbaa32912870403f88d (patch)
treef093b3055d61056f394aff7142c8ef78d8d4a4f7
parent787985b5f5ee12ed659a270d27d993732607dc2b (diff)
downloadincremental_delivery-daf7f8caed3b8bf8120d5cbaa32912870403f88d.tar.gz
Migrate Test Targets to New Android Ownership Model
This CL is created as a best effort to migrate test targets to the new Android ownership model. It is based on historical data from repository history and insights from git blame. Given the nature of this effort, there may be instances of incorrect attribution. If you find incorrect or unnecessary attribution in this CL, please create a new CL to fix that. For detailed guidelines and further information on the migration please refer to the link below, go/new-android-ownership-model Bug: 304529413 Test: N/A Change-Id: Ie05d274a9816deb166df12f49ea132d0d4201812
-rw-r--r--incfs/Android.bp18
1 files changed, 14 insertions, 4 deletions
diff --git a/incfs/Android.bp b/incfs/Android.bp
index e179011..a534674 100644
--- a/incfs/Android.bp
+++ b/incfs/Android.bp
@@ -13,6 +13,7 @@
// limitations under the License.
package {
+ default_team: "trendy_team_android_resources",
default_applicable_licenses: ["system_incremental_delivery_incfs_license"],
}
@@ -44,7 +45,13 @@ license {
cc_defaults {
name: "libincfs_defaults_common",
cpp_std: "c++2a",
- cflags: ["-Werror", "-Wall", "-Wextra", "-Wno-deprecated-enum-enum-conversion", "-D_FILE_OFFSET_BITS=64"],
+ cflags: [
+ "-Werror",
+ "-Wall",
+ "-Wextra",
+ "-Wno-deprecated-enum-enum-conversion",
+ "-D_FILE_OFFSET_BITS=64",
+ ],
tidy: true,
tidy_checks: [
"android-*",
@@ -133,13 +140,16 @@ cc_library_static {
cc_library_headers {
name: "libincfs_headers",
- export_include_dirs: ["include/", "kernel-headers",],
+ export_include_dirs: [
+ "include/",
+ "kernel-headers",
+ ],
host_supported: true,
target: {
linux_bionic: {
enabled: true,
- }
- }
+ },
+ },
}
cc_test {