blob: 68da5c56d2c61462a788670c2c0428bba12bfc92 [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]})) && "
46 + "$(location soong_zip) -o $(out) -C $$RES_DIR -D $$RES_DIR && "
47 + "cp $(out) ."
48}
49
50//
51// Build app code.
52//
53android_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",
Ching-Sung Li3f2c7762021-05-04 19:44:19 +080067 "src_overridecustom/**/*.java",
68 "src_overridecustom/**/*.kt",
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080069 ],
70
71 use_embedded_native_libs: true,
72
73 resource_zips: [":WallpaperPicker2_res", ":ThemePicker_res"],
74
75 optimize: {
76 enabled: false,
77 },
Santiago Etchebehere260beaf2021-03-16 18:53:50 -070078 kotlincflags: ["-Xjvm-default=enable"],
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080079 certificate: "",
80
81 privileged: true,
82 system_ext_specific: true,
83 platform_apis: true,
84 manifest: "AndroidManifest.xml",
85 overrides: ["WallpaperPicker2"],
86}