| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 | 685 |
| 686 script = "//build/android/gyp/lint.py" | 686 script = "//build/android/gyp/lint.py" |
| 687 depfile = "$target_gen_dir/$target_name.d" | 687 depfile = "$target_gen_dir/$target_name.d" |
| 688 inputs = [ | 688 inputs = [ |
| 689 _platform_xml_path, | 689 _platform_xml_path, |
| 690 _suppressions_file, | 690 _suppressions_file, |
| 691 invoker.android_manifest, | 691 invoker.android_manifest, |
| 692 ] | 692 ] |
| 693 | 693 |
| 694 outputs = [ | 694 outputs = [ |
| 695 _result_path, |
| 695 _config_path, | 696 _config_path, |
| 696 _result_path, | |
| 697 ] | 697 ] |
| 698 | 698 |
| 699 args = [ | 699 args = [ |
| 700 "--lint-path=$_rebased_lint_android_sdk_root/tools/lint", | 700 "--lint-path=$_rebased_lint_android_sdk_root/tools/lint", |
| 701 "--cache-dir", | 701 "--cache-dir", |
| 702 rebase_path(_cache_dir, root_build_dir), | 702 rebase_path(_cache_dir, root_build_dir), |
| 703 "--platform-xml-path", | 703 "--platform-xml-path", |
| 704 rebase_path(_platform_xml_path, root_build_dir), | 704 rebase_path(_platform_xml_path, root_build_dir), |
| 705 "--android-sdk-version=${lint_android_sdk_version}", | 705 "--android-sdk-version=${lint_android_sdk_version}", |
| 706 "--depfile", | 706 "--depfile", |
| (...skipping 1986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2693 rebase_path(root_build_dir, root_build_dir), | 2693 rebase_path(root_build_dir, root_build_dir), |
| 2694 "--packed-libraries-dir", | 2694 "--packed-libraries-dir", |
| 2695 rebase_path(_packed_libraries_dir, root_build_dir), | 2695 rebase_path(_packed_libraries_dir, root_build_dir), |
| 2696 "--libraries=${invoker.libraries_filearg}", | 2696 "--libraries=${invoker.libraries_filearg}", |
| 2697 "--filelistjson", | 2697 "--filelistjson", |
| 2698 rebase_path(invoker.file_list_json, root_build_dir), | 2698 rebase_path(invoker.file_list_json, root_build_dir), |
| 2699 ] | 2699 ] |
| 2700 } | 2700 } |
| 2701 } | 2701 } |
| 2702 } | 2702 } |
| OLD | NEW |