blob: 5688407c96f2fcc60fb5f52dba724d1268006047 [file] [log] [blame]
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -07001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Hyunyoung Song447036d2018-09-10 14:15:19 -070015java_library_static {
Hyunyoung Song0a138782018-09-18 16:08:50 -070016 name: "launcher-log-proto-nano",
17 proto: {
18 type: "nano",
19 output_params: [
20 "store_unknown_fields=true",
21 "enum_style=java",
22 ],
23 local_include_dirs: [
24 "protos",
25 "proto_overrides",
26 ],
27 },
28 srcs: [
29 "protos/**/*.proto",
30 "proto_overrides/**/*.proto",
31 ],
32}
33
34android_library{
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070035 name: "launcher-aosp-tapl",
36 static_libs: [
37 "androidx.annotation_annotation",
Hyunyoung Song0a138782018-09-18 16:08:50 -070038 "androidx.dynamicanimation_dynamicanimation",
39 "androidx.recyclerview_recyclerview",
40 "androidx.preference_preference",
Brett Chabotd7d692c2018-10-23 21:17:58 -070041 "androidx.test.runner",
42 "androidx.test.rules",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070043 "androidx.test.uiautomator_uiautomator",
Hyunyoung Song0a138782018-09-18 16:08:50 -070044 "iconloader_base",
45 "launcher-log-proto-nano",
46 "launcherprotosnano",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070047 "SystemUISharedLib",
48 ],
49 srcs: [
50 "tests/tapl/**/*.java",
Hyunyoung Song0a138782018-09-18 16:08:50 -070051 "quickstep/src/**/*.java",
52 "quickstep/recents_ui_overrides/src/**/*.java",
53 "src/**/*.java",
54 "src_build_config/**/*.java",
55 "src_flags/**/*.java",
56 "src_plugins/**/*.java",
57 "src_shortcuts_overrides/**/*.java",
58 ],
59 dxflags: ["--multi-dex"],
60 resource_dirs: [
61 "res",
62 "quickstep/res",
63 "quickstep/recents_ui_overrides/res",
Hyunyoung Songda4fcfe2018-09-05 09:57:59 -070064 ],
65 platform_apis: true,
66}