blob: 755ba1d165a321ff4de9c7d28fe72d7d1368baed [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",
67 ],
68
69 use_embedded_native_libs: true,
70
71 resource_zips: [":WallpaperPicker2_res", ":ThemePicker_res"],
72
73 optimize: {
74 enabled: false,
75 },
Santiago Etchebehere260beaf2021-03-16 18:53:50 -070076 kotlincflags: ["-Xjvm-default=enable"],
Santiago Etchebehere0b1d66e2021-03-04 18:25:05 -080077 certificate: "",
78
79 privileged: true,
80 system_ext_specific: true,
81 platform_apis: true,
82 manifest: "AndroidManifest.xml",
83 overrides: ["WallpaperPicker2"],
84}