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

Side by Side Diff: build/android/lint_action.gypi

Issue 1190103002: Make lint fail builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix can_fail_build check Created 5 years, 6 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
« build/android/gyp/lint.py ('K') | « build/android/gyp/lint.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 # This file is meant to be included into an action to provide a rule to 5 # This file is meant to be included into an action to provide a rule to
6 # run lint on java/class files. 6 # run lint on java/class files.
7 7
8 { 8 {
9 'action_name': 'lint_<(_target_name)', 9 'action_name': 'lint_<(_target_name)',
10 'message': 'Linting <(_target_name)', 10 'message': 'Linting <(_target_name)',
(...skipping 18 matching lines...) Expand all
29 'python', '<(DEPTH)/build/android/gyp/lint.py', 29 'python', '<(DEPTH)/build/android/gyp/lint.py',
30 '--lint-path=<(android_sdk_root)/tools/lint', 30 '--lint-path=<(android_sdk_root)/tools/lint',
31 '--config-path=<(DEPTH)/build/android/lint/suppressions.xml', 31 '--config-path=<(DEPTH)/build/android/lint/suppressions.xml',
32 '--processed-config-path=<(config_path)', 32 '--processed-config-path=<(config_path)',
33 '--manifest-path=<(android_manifest_path)', 33 '--manifest-path=<(android_manifest_path)',
34 '--result-path=<(result_path)', 34 '--result-path=<(result_path)',
35 '--resource-dir=<(resource_dir)', 35 '--resource-dir=<(resource_dir)',
36 '--product-dir=<(PRODUCT_DIR)', 36 '--product-dir=<(PRODUCT_DIR)',
37 '--src-dirs=>(src_dirs)', 37 '--src-dirs=>(src_dirs)',
38 '--jar-path=<(lint_jar_path)', 38 '--jar-path=<(lint_jar_path)',
39 '--can-fail-build',
39 '--stamp=<(stamp_path)', 40 '--stamp=<(stamp_path)',
40 '<(is_enabled)', 41 '<(is_enabled)',
41 ], 42 ],
42 } 43 }
OLDNEW
« build/android/gyp/lint.py ('K') | « build/android/gyp/lint.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698