| 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 } else { | 759 } else { |
| 760 inputs += [ android_sdk_jar ] | 760 inputs += [ android_sdk_jar ] |
| 761 _rebased_android_sdk_jar = rebased_android_sdk_jar | 761 _rebased_android_sdk_jar = rebased_android_sdk_jar |
| 762 } | 762 } |
| 763 if (defined(invoker.inputs)) { | 763 if (defined(invoker.inputs)) { |
| 764 inputs += invoker.inputs | 764 inputs += invoker.inputs |
| 765 } | 765 } |
| 766 depfile = "${target_gen_dir}/${target_name}.d" | 766 depfile = "${target_gen_dir}/${target_name}.d" |
| 767 outputs = [ | 767 outputs = [ |
| 768 _output_jar_path, | 768 _output_jar_path, |
| 769 "$_output_jar_path.flags", |
| 770 "$_output_jar_path.mapping", |
| 769 "$_output_jar_path.seeds", | 771 "$_output_jar_path.seeds", |
| 770 "$_output_jar_path.mapping", | |
| 771 "$_output_jar_path.usage", | 772 "$_output_jar_path.usage", |
| 772 ] | 773 ] |
| 773 args = [ | 774 args = [ |
| 774 "--depfile", | 775 "--depfile", |
| 775 rebase_path(depfile, root_build_dir), | 776 rebase_path(depfile, root_build_dir), |
| 776 "--proguard-path", | 777 "--proguard-path", |
| 777 rebase_path(_proguard_jar_path, root_build_dir), | 778 rebase_path(_proguard_jar_path, root_build_dir), |
| 778 "--output-path", | 779 "--output-path", |
| 779 rebase_path(_output_jar_path, root_build_dir), | 780 rebase_path(_output_jar_path, root_build_dir), |
| 780 "--classpath", | 781 "--classpath", |
| (...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2811 rebase_path(root_build_dir, root_build_dir), | 2812 rebase_path(root_build_dir, root_build_dir), |
| 2812 "--packed-libraries-dir", | 2813 "--packed-libraries-dir", |
| 2813 rebase_path(_packed_libraries_dir, root_build_dir), | 2814 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2814 "--libraries=${invoker.libraries_filearg}", | 2815 "--libraries=${invoker.libraries_filearg}", |
| 2815 "--filelistjson", | 2816 "--filelistjson", |
| 2816 rebase_path(invoker.file_list_json, root_build_dir), | 2817 rebase_path(invoker.file_list_json, root_build_dir), |
| 2817 ] | 2818 ] |
| 2818 } | 2819 } |
| 2819 } | 2820 } |
| 2820 } | 2821 } |
| OLD | NEW |