diff options
author | 2024-06-07 05:31:15 +0000 | |
---|---|---|
committer | 2024-06-07 05:31:15 +0000 | |
commit | 91dddafef2eb434e849e84acf1bb0bf1d54e0275 (patch) | |
tree | c273a3312c2cbb0c86340e0ecd5595742501e9fe /build_config | |
parent | 4d710baea00fa9ed160d7e1ecc2b3e8712369b80 (diff) | |
parent | 99d341e5801acfca7f0104c748ad4aa31b81b676 (diff) |
Merge "Define build_flags.json soong modules" into main am: 99d341e580
Original change: https://android-review.googlesource.com/c/platform/build/release/+/3007306
Change-Id: I99ddbc6cec7a14c4a02001e9185257d4f32d2ee0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'build_config')
-rw-r--r-- | build_config/Android.bp | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/build_config/Android.bp b/build_config/Android.bp new file mode 100644 index 00000000..d313fa5c --- /dev/null +++ b/build_config/Android.bp @@ -0,0 +1,36 @@ +// Copyright (C) 2024 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. + +package { + default_applicable_licenses: ["Android-Apache-2.0"], +} + +build_flags_json { + name: "build_flag_system", +} + +build_flags_json { + name: "build_flag_system_ext", + system_ext_specific: true, +} + +build_flags_json { + name: "build_flag_product", + product_specific: true, +} + +build_flags_json { + name: "build_flag_vendor", + vendor: true, +} |