| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 | 7 |
| 8 assert(is_android) | 8 assert(is_android) |
| 9 | 9 |
| 10 # These identify targets that have .build_config files (except for android_apk, | 10 # These identify targets that have .build_config files (except for android_apk, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 "//third_party/android_tools:emma_device", | 41 "//third_party/android_tools:emma_device", |
| 42 "//third_party/cardboard-java:cardboard-java", | 42 "//third_party/cardboard-java:cardboard-java", |
| 43 "//third_party/custom_tabs_client:custom_tabs_client_shared_lib", | 43 "//third_party/custom_tabs_client:custom_tabs_client_shared_lib", |
| 44 "//third_party/custom_tabs_client:custom_tabs_support_lib", | 44 "//third_party/custom_tabs_client:custom_tabs_support_lib", |
| 45 "//third_party/errorprone:chromium_errorprone", | 45 "//third_party/errorprone:chromium_errorprone", |
| 46 "//third_party/haha:haha", | 46 "//third_party/haha:haha", |
| 47 "//third_party/junit:hamcrest", | 47 "//third_party/junit:hamcrest", |
| 48 "//third_party/netty4:netty_all", | 48 "//third_party/netty4:netty_all", |
| 49 "//third_party/netty-tcnative:netty-tcnative", | 49 "//third_party/netty-tcnative:netty-tcnative", |
| 50 "//third_party/robolectric:android-all-4.3_r2-robolectric-0", | 50 "//third_party/robolectric:android-all-4.3_r2-robolectric-0", |
| 51 "//third_party/robolectric:android-all-5.0.0_r2-robolectric-1", |
| 51 "//third_party/robolectric:json-20080701", | 52 "//third_party/robolectric:json-20080701", |
| 52 "//third_party/robolectric:tagsoup-1.2", | 53 "//third_party/robolectric:tagsoup-1.2", |
| 54 "//third_party/robolectric:shadows-core-3.0", |
| 55 "//third_party/robolectric:shadows-multidex-3.0", |
| 53 ] | 56 ] |
| 54 | 57 |
| 55 # Targets that match the whitelist but are not actually java targets. | 58 # Targets that match the whitelist but are not actually java targets. |
| 56 _java_target_blacklist = [ | 59 _java_target_blacklist = [ |
| 57 "//chrome:packed_extra_resources", | 60 "//chrome:packed_extra_resources", |
| 58 "//chrome:packed_resources", | 61 "//chrome:packed_resources", |
| 59 "//remoting/android:remoting_android_raw_resources", | 62 "//remoting/android:remoting_android_raw_resources", |
| 60 "*:*_unpack_aar", | 63 "*:*_unpack_aar", |
| 61 ] | 64 ] |
| 62 | 65 |
| (...skipping 2495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2558 outputs = [ | 2561 outputs = [ |
| 2559 depfile, | 2562 depfile, |
| 2560 invoker.out_manifest, | 2563 invoker.out_manifest, |
| 2561 ] | 2564 ] |
| 2562 inputs = [ | 2565 inputs = [ |
| 2563 invoker.main_manifest, | 2566 invoker.main_manifest, |
| 2564 ] | 2567 ] |
| 2565 } | 2568 } |
| 2566 } | 2569 } |
| 2567 } | 2570 } |
| OLD | NEW |