Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 1 | // 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 Song | 447036d | 2018-09-10 14:15:19 -0700 | [diff] [blame] | 15 | java_library_static { |
Hyunyoung Song | 0a13878 | 2018-09-18 16:08:50 -0700 | [diff] [blame^] | 16 | 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 | |
| 34 | android_library{ |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 35 | name: "launcher-aosp-tapl", |
| 36 | static_libs: [ |
| 37 | "androidx.annotation_annotation", |
Hyunyoung Song | 0a13878 | 2018-09-18 16:08:50 -0700 | [diff] [blame^] | 38 | "androidx.dynamicanimation_dynamicanimation", |
| 39 | "androidx.recyclerview_recyclerview", |
| 40 | "androidx.preference_preference", |
Brett Chabot | d7d692c | 2018-10-23 21:17:58 -0700 | [diff] [blame] | 41 | "androidx.test.runner", |
| 42 | "androidx.test.rules", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 43 | "androidx.test.uiautomator_uiautomator", |
Hyunyoung Song | 0a13878 | 2018-09-18 16:08:50 -0700 | [diff] [blame^] | 44 | "iconloader_base", |
| 45 | "launcher-log-proto-nano", |
| 46 | "launcherprotosnano", |
Hyunyoung Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 47 | "SystemUISharedLib", |
| 48 | ], |
| 49 | srcs: [ |
| 50 | "tests/tapl/**/*.java", |
Hyunyoung Song | 0a13878 | 2018-09-18 16:08:50 -0700 | [diff] [blame^] | 51 | "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 Song | da4fcfe | 2018-09-05 09:57:59 -0700 | [diff] [blame] | 64 | ], |
| 65 | platform_apis: true, |
| 66 | } |