blob: c8bf759d22cdeb4683815c1e4a8dd14502f89664 [file] [log] [blame]
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -08001//
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 Badoure9c20682021-03-19 03:30:57 -070018package {
19 default_applicable_licenses: ["Android-Apache-2.0"],
20}
21
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080022filegroup {
23 name: "ThemePicker_srcs",
24 srcs: [
25 "src/**/*.java",
26 "src/**/*.kt",
27 ],
28}
29
30filegroup {
31 name: "ThemePicker_Manifest",
32 srcs: [
33 "AndroidManifest.xml",
34 ],
35}
36
37genrule {
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]})) && "
Colin Cross928f3132021-05-11 18:32:09 +000046 + "$(location soong_zip) -o $(out) -C $$RES_DIR -D $$RES_DIR"
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080047}
48
49//
50// Build app code.
51//
52android_app {
53 name: "ThemePicker",
54
55 static_libs: [
56 "wallpaper-common-deps",
57 "styleprotoslite",
58 "SystemUI-statsd",
59 ],
60
61 srcs: [
62 ":WallpaperPicker2_srcs",
63 ":ThemePicker_srcs",
64 "src_override/**/*.java",
65 "src_override/**/*.kt",
Ching-Sung Li3f2c7762021-05-04 19:44:19 +080066 "src_overridecustom/**/*.java",
67 "src_overridecustom/**/*.kt",
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080068 ],
69
70 use_embedded_native_libs: true,
71
72 resource_zips: [":WallpaperPicker2_res", ":ThemePicker_res"],
73
74 optimize: {
75 enabled: false,
76 },
Santiago Etchebehere260beaf2021-03-16 18:53:50 -070077 kotlincflags: ["-Xjvm-default=enable"],
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080078 certificate: "",
79
80 privileged: true,
81 system_ext_specific: true,
82 platform_apis: true,
83 manifest: "AndroidManifest.xml",
84 overrides: ["WallpaperPicker2"],
85}