Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Side by Side Diff: build/config/android/internal_rules.gni

Issue 2830843004: Update to newer Android Lint and suppress new Lint errors (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 733 matching lines...) Expand 10 before | Expand all | Expand 10 after
744 _suppressions_file, 744 _suppressions_file,
745 invoker.android_manifest, 745 invoker.android_manifest,
746 ] 746 ]
747 747
748 outputs = [ 748 outputs = [
749 _result_path, 749 _result_path,
750 _config_path, 750 _config_path,
751 ] 751 ]
752 752
753 args = [ 753 args = [
754 "--lint-path=$_rebased_lint_android_sdk_root/tools/lint", 754 "--lint-path=$_rebased_lint_android_sdk_root/tools-lint/bin/lint",
755 "--cache-dir", 755 "--cache-dir",
756 rebase_path(_cache_dir, root_build_dir), 756 rebase_path(_cache_dir, root_build_dir),
757 "--platform-xml-path", 757 "--platform-xml-path",
758 rebase_path(_platform_xml_path, root_build_dir), 758 rebase_path(_platform_xml_path, root_build_dir),
759 "--android-sdk-version=${lint_android_sdk_version}", 759 "--android-sdk-version=${lint_android_sdk_version}",
760 "--depfile", 760 "--depfile",
761 rebase_path(depfile, root_build_dir), 761 rebase_path(depfile, root_build_dir),
762 "--config-path", 762 "--config-path",
763 rebase_path(_suppressions_file, root_build_dir), 763 rebase_path(_suppressions_file, root_build_dir),
764 "--manifest-path", 764 "--manifest-path",
(...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after
2847 rebase_path(root_build_dir, root_build_dir), 2847 rebase_path(root_build_dir, root_build_dir),
2848 "--packed-libraries-dir", 2848 "--packed-libraries-dir",
2849 rebase_path(_packed_libraries_dir, root_build_dir), 2849 rebase_path(_packed_libraries_dir, root_build_dir),
2850 "--libraries=${invoker.libraries_filearg}", 2850 "--libraries=${invoker.libraries_filearg}",
2851 "--filelistjson", 2851 "--filelistjson",
2852 rebase_path(invoker.file_list_json, root_build_dir), 2852 rebase_path(invoker.file_list_json, root_build_dir),
2853 ] 2853 ]
2854 } 2854 }
2855 } 2855 }
2856 } 2856 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698