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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
901 "--classpath", | 901 "--classpath", |
902 rebase_path("//third_party/android_tools/sdk/tools/lib/emma.jar", | 902 rebase_path("//third_party/android_tools/sdk/tools/lib/emma.jar", |
903 root_build_dir), | 903 root_build_dir), |
904 ] | 904 ] |
905 args += [ "--noverify" ] | 905 args += [ "--noverify" ] |
906 } | 906 } |
907 if (defined(invoker.wrapper_script_args)) { | 907 if (defined(invoker.wrapper_script_args)) { |
908 args += [ "--" ] + invoker.wrapper_script_args | 908 args += [ "--" ] + invoker.wrapper_script_args |
909 } | 909 } |
910 if (defined(invoker.bootclasspath)) { | 910 if (defined(invoker.bootclasspath)) { |
911 inputs += [ invoker.bootclasspath ] | |
912 args += [ | 911 args += [ |
913 "--bootclasspath", | 912 "--bootclasspath", |
914 rebase_path(invoker.bootclasspath, root_build_dir), | 913 rebase_path(invoker.bootclasspath, root_build_dir), |
915 ] | 914 ] |
916 } | 915 } |
917 } | 916 } |
918 } | 917 } |
919 | 918 |
920 template("dex") { | 919 template("dex") { |
921 set_sources_assignment_filter([]) | 920 set_sources_assignment_filter([]) |
(...skipping 1789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2711 rebase_path(root_build_dir, root_build_dir), | 2710 rebase_path(root_build_dir, root_build_dir), |
2712 "--packed-libraries-dir", | 2711 "--packed-libraries-dir", |
2713 rebase_path(_packed_libraries_dir, root_build_dir), | 2712 rebase_path(_packed_libraries_dir, root_build_dir), |
2714 "--libraries=${invoker.libraries_filearg}", | 2713 "--libraries=${invoker.libraries_filearg}", |
2715 "--filelistjson", | 2714 "--filelistjson", |
2716 rebase_path(invoker.file_list_json, root_build_dir), | 2715 rebase_path(invoker.file_list_json, root_build_dir), |
2717 ] | 2716 ] |
2718 } | 2717 } |
2719 } | 2718 } |
2720 } | 2719 } |
OLD | NEW |