| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "//third_party/robolectric:android-all-5.0.0_r2-robolectric-1", | 54 "//third_party/robolectric:android-all-5.0.0_r2-robolectric-1", |
| 55 "//third_party/robolectric:json-20080701", | 55 "//third_party/robolectric:json-20080701", |
| 56 "//third_party/robolectric:tagsoup-1.2", | 56 "//third_party/robolectric:tagsoup-1.2", |
| 57 "//third_party/robolectric:shadows-core-3.0-18", | 57 "//third_party/robolectric:shadows-core-3.0-18", |
| 58 "//third_party/robolectric:shadows-core-3.0-21", | 58 "//third_party/robolectric:shadows-core-3.0-21", |
| 59 "//third_party/robolectric:shadows-multidex-3.0", | 59 "//third_party/robolectric:shadows-multidex-3.0", |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 # Targets that match the whitelist but are not actually java targets. | 62 # Targets that match the whitelist but are not actually java targets. |
| 63 _java_target_blacklist = [ | 63 _java_target_blacklist = [ |
| 64 "//chrome:packed_extra_resources", | |
| 65 "//chrome:packed_resources", | 64 "//chrome:packed_resources", |
| 66 "//remoting/android:remoting_android_raw_resources", | 65 "//remoting/android:remoting_android_raw_resources", |
| 67 "*:*_unpack_aar", | 66 "*:*_unpack_aar", |
| 68 ] | 67 ] |
| 69 | 68 |
| 70 # Write the target's .build_config file. This is a json file that contains a | 69 # Write the target's .build_config file. This is a json file that contains a |
| 71 # dictionary of information about how to build this target (things that | 70 # dictionary of information about how to build this target (things that |
| 72 # require knowledge about this target's dependencies and cannot be calculated | 71 # require knowledge about this target's dependencies and cannot be calculated |
| 73 # at gn-time). There is a special syntax to add a value in that dictionary to | 72 # at gn-time). There is a special syntax to add a value in that dictionary to |
| 74 # an action/action_foreachs args: | 73 # an action/action_foreachs args: |
| (...skipping 2618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2693 rebase_path(root_build_dir, root_build_dir), | 2692 rebase_path(root_build_dir, root_build_dir), |
| 2694 "--packed-libraries-dir", | 2693 "--packed-libraries-dir", |
| 2695 rebase_path(_packed_libraries_dir, root_build_dir), | 2694 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2696 "--libraries=${invoker.libraries_filearg}", | 2695 "--libraries=${invoker.libraries_filearg}", |
| 2697 "--filelistjson", | 2696 "--filelistjson", |
| 2698 rebase_path(invoker.file_list_json, root_build_dir), | 2697 rebase_path(invoker.file_list_json, root_build_dir), |
| 2699 ] | 2698 ] |
| 2700 } | 2699 } |
| 2701 } | 2700 } |
| 2702 } | 2701 } |
| OLD | NEW |