| 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 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 791 depfile, | 791 depfile, |
| 792 java_script, | 792 java_script, |
| 793 ] | 793 ] |
| 794 forward_variables_from(invoker, [ "deps" ]) | 794 forward_variables_from(invoker, [ "deps" ]) |
| 795 _rebased_build_config = rebase_path(_build_config, root_build_dir) | 795 _rebased_build_config = rebase_path(_build_config, root_build_dir) |
| 796 args = [ | 796 args = [ |
| 797 "--depfile", | 797 "--depfile", |
| 798 rebase_path(depfile, root_build_dir), | 798 rebase_path(depfile, root_build_dir), |
| 799 "--output", | 799 "--output", |
| 800 rebase_path(java_script, root_build_dir), | 800 rebase_path(java_script, root_build_dir), |
| 801 "--classpath=@FileArg($_rebased_build_config:java:full_classpath)", | 801 "--classpath=@FileArg($_rebased_build_config:deps_info:java:full_classpa
th)", |
| 802 "--jar-path", | 802 "--jar-path", |
| 803 rebase_path(_jar_path, root_build_dir), | 803 rebase_path(_jar_path, root_build_dir), |
| 804 "--main-class", | 804 "--main-class", |
| 805 _main_class, | 805 _main_class, |
| 806 ] | 806 ] |
| 807 if (emma_coverage) { | 807 if (emma_coverage) { |
| 808 args += [ | 808 args += [ |
| 809 "--classpath", | 809 "--classpath", |
| 810 rebase_path("//third_party/android_tools/sdk/tools/lib/emma.jar", | 810 rebase_path("//third_party/android_tools/sdk/tools/lib/emma.jar", |
| 811 root_build_dir), | 811 root_build_dir), |
| (...skipping 1749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2561 outputs = [ | 2561 outputs = [ |
| 2562 depfile, | 2562 depfile, |
| 2563 invoker.out_manifest, | 2563 invoker.out_manifest, |
| 2564 ] | 2564 ] |
| 2565 inputs = [ | 2565 inputs = [ |
| 2566 invoker.main_manifest, | 2566 invoker.main_manifest, |
| 2567 ] | 2567 ] |
| 2568 } | 2568 } |
| 2569 } | 2569 } |
| 2570 } | 2570 } |
| OLD | NEW |