Santiago Etchebehere | 0b1d66e | 2021-03-04 18:25:05 -0800 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2021 The Android Open Source Project |
| 3 | // |
| 4 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | // you may not use this file except in compliance with the License. |
| 6 | // You may obtain a copy of the License at |
| 7 | // |
| 8 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | // |
| 10 | // Unless required by applicable law or agreed to in writing, software |
| 11 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | // See the License for the specific language governing permissions and |
| 14 | // limitations under the License. |
| 15 | // |
| 16 | |
| 17 | |
Bob Badour | e9c2068 | 2021-03-19 03:30:57 -0700 | [diff] [blame] | 18 | package { |
| 19 | default_applicable_licenses: ["Android-Apache-2.0"], |
| 20 | } |
| 21 | |
Santiago Etchebehere | 0b1d66e | 2021-03-04 18:25:05 -0800 | [diff] [blame] | 22 | filegroup { |
| 23 | name: "ThemePicker_srcs", |
| 24 | srcs: [ |
| 25 | "src/**/*.java", |
| 26 | "src/**/*.kt", |
| 27 | ], |
| 28 | } |
| 29 | |
| 30 | filegroup { |
| 31 | name: "ThemePicker_Manifest", |
| 32 | srcs: [ |
| 33 | "AndroidManifest.xml", |
| 34 | ], |
| 35 | } |
| 36 | |
| 37 | genrule { |
| 38 | name: "ThemePicker_res", |
| 39 | tools: ["soong_zip"], |
| 40 | srcs: [ |
| 41 | "res/**/*" |
| 42 | ], |
| 43 | out: ["ThemePicker_res.zip"], |
| 44 | cmd: "INPUTS=($(in)) && " |
| 45 | + "RES_DIR=$$(dirname $$(dirname $${INPUTS[0]})) && " |
| 46 | + "$(location soong_zip) -o $(out) -C $$RES_DIR -D $$RES_DIR && " |
| 47 | + "cp $(out) ." |
| 48 | } |
| 49 | |
| 50 | // |
| 51 | // Build app code. |
| 52 | // |
| 53 | android_app { |
| 54 | name: "ThemePicker", |
| 55 | |
| 56 | static_libs: [ |
| 57 | "wallpaper-common-deps", |
| 58 | "styleprotoslite", |
| 59 | "SystemUI-statsd", |
| 60 | ], |
| 61 | |
| 62 | srcs: [ |
| 63 | ":WallpaperPicker2_srcs", |
| 64 | ":ThemePicker_srcs", |
| 65 | "src_override/**/*.java", |
| 66 | "src_override/**/*.kt", |
| 67 | ], |
| 68 | |
| 69 | use_embedded_native_libs: true, |
| 70 | |
| 71 | resource_zips: [":WallpaperPicker2_res", ":ThemePicker_res"], |
| 72 | |
| 73 | optimize: { |
| 74 | enabled: false, |
| 75 | }, |
Santiago Etchebehere | 260beaf | 2021-03-16 18:53:50 -0700 | [diff] [blame] | 76 | kotlincflags: ["-Xjvm-default=enable"], |
Santiago Etchebehere | 0b1d66e | 2021-03-04 18:25:05 -0800 | [diff] [blame] | 77 | certificate: "", |
| 78 | |
| 79 | privileged: true, |
| 80 | system_ext_specific: true, |
| 81 | platform_apis: true, |
| 82 | manifest: "AndroidManifest.xml", |
| 83 | overrides: ["WallpaperPicker2"], |
| 84 | } |