| 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 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 689 _suppressions_file, | 689 _suppressions_file, |
| 690 invoker.android_manifest, | 690 invoker.android_manifest, |
| 691 ] | 691 ] |
| 692 | 692 |
| 693 outputs = [ | 693 outputs = [ |
| 694 _result_path, | 694 _result_path, |
| 695 _config_path, | 695 _config_path, |
| 696 ] | 696 ] |
| 697 | 697 |
| 698 args = [ | 698 args = [ |
| 699 "--lint-path=$_rebased_lint_android_sdk_root/tools/lint", | 699 "--lint-path=$_rebased_lint_android_sdk_root/tools-lint/bin/lint", |
| 700 "--cache-dir", | 700 "--cache-dir", |
| 701 rebase_path(_cache_dir, root_build_dir), | 701 rebase_path(_cache_dir, root_build_dir), |
| 702 "--platform-xml-path", | 702 "--platform-xml-path", |
| 703 rebase_path(_platform_xml_path, root_build_dir), | 703 rebase_path(_platform_xml_path, root_build_dir), |
| 704 "--android-sdk-version=${lint_android_sdk_version}", | 704 "--android-sdk-version=${lint_android_sdk_version}", |
| 705 "--depfile", | 705 "--depfile", |
| 706 rebase_path(depfile, root_build_dir), | 706 rebase_path(depfile, root_build_dir), |
| 707 "--config-path", | 707 "--config-path", |
| 708 rebase_path(_suppressions_file, root_build_dir), | 708 rebase_path(_suppressions_file, root_build_dir), |
| 709 "--manifest-path", | 709 "--manifest-path", |
| (...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2792 rebase_path(root_build_dir, root_build_dir), | 2792 rebase_path(root_build_dir, root_build_dir), |
| 2793 "--packed-libraries-dir", | 2793 "--packed-libraries-dir", |
| 2794 rebase_path(_packed_libraries_dir, root_build_dir), | 2794 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2795 "--libraries=${invoker.libraries_filearg}", | 2795 "--libraries=${invoker.libraries_filearg}", |
| 2796 "--filelistjson", | 2796 "--filelistjson", |
| 2797 rebase_path(invoker.file_list_json, root_build_dir), | 2797 rebase_path(invoker.file_list_json, root_build_dir), |
| 2798 ] | 2798 ] |
| 2799 } | 2799 } |
| 2800 } | 2800 } |
| 2801 } | 2801 } |
| OLD | NEW |