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/dcheck_always_on.gni") | 9 import("//build/config/dcheck_always_on.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 20 matching lines...) Expand all Loading... |
31 "*:*locale_paks", | 31 "*:*locale_paks", |
32 | 32 |
33 # TODO(agrieve): Rename targets below to match above patterns. | 33 # TODO(agrieve): Rename targets below to match above patterns. |
34 "*android_webview/glue:glue", | 34 "*android_webview/glue:glue", |
35 "//chrome/test/android/cast_emulator:cast_emulator", | 35 "//chrome/test/android/cast_emulator:cast_emulator", |
36 ] | 36 ] |
37 | 37 |
38 # Targets that match the whitelist but are not actually java targets. | 38 # Targets that match the whitelist but are not actually java targets. |
39 _java_target_blacklist = [ | 39 _java_target_blacklist = [ |
40 "//chrome:packed_resources", | 40 "//chrome:packed_resources", |
41 "//remoting/android:remoting_android_raw_resources", | |
42 "*:*_unpack_aar", | 41 "*:*_unpack_aar", |
43 ] | 42 ] |
44 | 43 |
45 # Write the target's .build_config file. This is a json file that contains a | 44 # Write the target's .build_config file. This is a json file that contains a |
46 # dictionary of information about how to build this target (things that | 45 # dictionary of information about how to build this target (things that |
47 # require knowledge about this target's dependencies and cannot be calculated | 46 # require knowledge about this target's dependencies and cannot be calculated |
48 # at gn-time). There is a special syntax to add a value in that dictionary to | 47 # at gn-time). There is a special syntax to add a value in that dictionary to |
49 # an action/action_foreachs args: | 48 # an action/action_foreachs args: |
50 # --python-arg=@FileArg($rebased_build_config_path:key0:key1) | 49 # --python-arg=@FileArg($rebased_build_config_path:key0:key1) |
51 # At runtime, such an arg will be replaced by the value in the build_config. | 50 # At runtime, such an arg will be replaced by the value in the build_config. |
(...skipping 2726 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2778 rebase_path(root_build_dir, root_build_dir), | 2777 rebase_path(root_build_dir, root_build_dir), |
2779 "--packed-libraries-dir", | 2778 "--packed-libraries-dir", |
2780 rebase_path(_packed_libraries_dir, root_build_dir), | 2779 rebase_path(_packed_libraries_dir, root_build_dir), |
2781 "--libraries=${invoker.libraries_filearg}", | 2780 "--libraries=${invoker.libraries_filearg}", |
2782 "--filelistjson", | 2781 "--filelistjson", |
2783 rebase_path(invoker.file_list_json, root_build_dir), | 2782 rebase_path(invoker.file_list_json, root_build_dir), |
2784 ] | 2783 ] |
2785 } | 2784 } |
2786 } | 2785 } |
2787 } | 2786 } |
OLD | NEW |