| 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 # Do not add any imports to non-//build directories here. | 5 # Do not add any imports to non-//build directories here. |
| 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. | 6 # Some projects (e.g. V8) do not have non-build directories DEPS'ed in. |
| 7 import("//build_overrides/build.gni") | 7 import("//build_overrides/build.gni") |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "*:*_apk_*resources", | 26 "*:*_apk_*resources", |
| 27 "*android*:resources", | 27 "*android*:resources", |
| 28 "*:*_resources", | 28 "*:*_resources", |
| 29 "*:*_grd", | 29 "*:*_grd", |
| 30 "*:*locale_paks", | 30 "*:*locale_paks", |
| 31 | 31 |
| 32 # TODO(agrieve): Rename targets below to match above patterns. | 32 # TODO(agrieve): Rename targets below to match above patterns. |
| 33 "*android_webview/glue:glue", | 33 "*android_webview/glue:glue", |
| 34 "//build/android/rezip:rezip", | 34 "//build/android/rezip:rezip", |
| 35 "//chrome/test/android/cast_emulator:cast_emulator", | 35 "//chrome/test/android/cast_emulator:cast_emulator", |
| 36 "//mojo/public/java:bindings", | |
| 37 "//third_party/custom_tabs_client:custom_tabs_support_lib", | |
| 38 ] | 36 ] |
| 39 | 37 |
| 40 # Targets that match the whitelist but are not actually java targets. | 38 # Targets that match the whitelist but are not actually java targets. |
| 41 _java_target_blacklist = [ | 39 _java_target_blacklist = [ |
| 42 "//chrome:packed_resources", | 40 "//chrome:packed_resources", |
| 43 "//remoting/android:remoting_android_raw_resources", | 41 "//remoting/android:remoting_android_raw_resources", |
| 44 "*:*_unpack_aar", | 42 "*:*_unpack_aar", |
| 45 ] | 43 ] |
| 46 | 44 |
| 47 # Write the target's .build_config file. This is a json file that contains a | 45 # Write the target's .build_config file. This is a json file that contains a |
| (...skipping 2648 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2696 rebase_path(root_build_dir, root_build_dir), | 2694 rebase_path(root_build_dir, root_build_dir), |
| 2697 "--packed-libraries-dir", | 2695 "--packed-libraries-dir", |
| 2698 rebase_path(_packed_libraries_dir, root_build_dir), | 2696 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2699 "--libraries=${invoker.libraries_filearg}", | 2697 "--libraries=${invoker.libraries_filearg}", |
| 2700 "--filelistjson", | 2698 "--filelistjson", |
| 2701 rebase_path(invoker.file_list_json, root_build_dir), | 2699 rebase_path(invoker.file_list_json, root_build_dir), |
| 2702 ] | 2700 ] |
| 2703 } | 2701 } |
| 2704 } | 2702 } |
| 2705 } | 2703 } |
| OLD | NEW |