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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 } else { | 760 } else { |
761 inputs += [ android_sdk_jar ] | 761 inputs += [ android_sdk_jar ] |
762 _rebased_android_sdk_jar = rebased_android_sdk_jar | 762 _rebased_android_sdk_jar = rebased_android_sdk_jar |
763 } | 763 } |
764 if (defined(invoker.inputs)) { | 764 if (defined(invoker.inputs)) { |
765 inputs += invoker.inputs | 765 inputs += invoker.inputs |
766 } | 766 } |
767 depfile = "${target_gen_dir}/${target_name}.d" | 767 depfile = "${target_gen_dir}/${target_name}.d" |
768 outputs = [ | 768 outputs = [ |
769 _output_jar_path, | 769 _output_jar_path, |
770 "$_output_jar_path.dump", | |
771 "$_output_jar_path.seeds", | 770 "$_output_jar_path.seeds", |
772 "$_output_jar_path.mapping", | 771 "$_output_jar_path.mapping", |
773 "$_output_jar_path.usage", | 772 "$_output_jar_path.usage", |
774 ] | 773 ] |
775 args = [ | 774 args = [ |
776 "--depfile", | 775 "--depfile", |
777 rebase_path(depfile, root_build_dir), | 776 rebase_path(depfile, root_build_dir), |
778 "--proguard-path", | 777 "--proguard-path", |
779 rebase_path(_proguard_jar_path, root_build_dir), | 778 rebase_path(_proguard_jar_path, root_build_dir), |
780 "--output-path", | 779 "--output-path", |
(...skipping 2039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2820 rebase_path(root_build_dir, root_build_dir), | 2819 rebase_path(root_build_dir, root_build_dir), |
2821 "--packed-libraries-dir", | 2820 "--packed-libraries-dir", |
2822 rebase_path(_packed_libraries_dir, root_build_dir), | 2821 rebase_path(_packed_libraries_dir, root_build_dir), |
2823 "--libraries=${invoker.libraries_filearg}", | 2822 "--libraries=${invoker.libraries_filearg}", |
2824 "--filelistjson", | 2823 "--filelistjson", |
2825 rebase_path(invoker.file_list_json, root_build_dir), | 2824 rebase_path(invoker.file_list_json, root_build_dir), |
2826 ] | 2825 ] |
2827 } | 2826 } |
2828 } | 2827 } |
2829 } | 2828 } |
OLD | NEW |