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

Side by Side Diff: build/java_apk.gypi

Issue 1815563005: [Android] Run lint using a cache in the output directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: agrieve comments Created 4 years, 9 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/java.gypi ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 a target to provide a rule 5 # This file is meant to be included into a target to provide a rule
6 # to build Android APKs in a consistent manner. 6 # to build Android APKs in a consistent manner.
7 # 7 #
8 # To use this, create a gyp target with the following form: 8 # To use this, create a gyp target with the following form:
9 # { 9 # {
10 # 'target_name': 'my_package_apk', 10 # 'target_name': 'my_package_apk',
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 'output_path': '<(main_dex_list_path)', 849 'output_path': '<(main_dex_list_path)',
850 }, 850 },
851 'includes': [ 'android/main_dex_action.gypi' ], 851 'includes': [ 'android/main_dex_action.gypi' ],
852 }, 852 },
853 ] 853 ]
854 }] 854 }]
855 ], 855 ],
856 }], 856 }],
857 ], 857 ],
858 'dependencies': [ 858 'dependencies': [
859 '<(DEPTH)/build/android/android_lint_cache.gyp:android_lint_cache',
859 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', 860 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum',
860 ], 861 ],
861 'actions': [ 862 'actions': [
862 { 863 {
863 'action_name': 'process_resources', 864 'action_name': 'process_resources',
864 'message': 'processing resources for <(_target_name)', 865 'message': 'processing resources for <(_target_name)',
865 'variables': { 866 'variables': {
866 'local_additional_input_paths': [ 867 'local_additional_input_paths': [
867 '>@(additional_input_paths)', 868 '>@(additional_input_paths)',
868 ], 869 ],
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 'native_libs_dir': '<(apk_package_native_libs_dir)', 1241 'native_libs_dir': '<(apk_package_native_libs_dir)',
1241 }, { 1242 }, {
1242 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res', 1243 'native_libs_dir': '<(DEPTH)/build/android/ant/empty/res',
1243 }], 1244 }],
1244 ], 1245 ],
1245 }, 1246 },
1246 'includes': ['android/apkbuilder_action.gypi'], 1247 'includes': ['android/apkbuilder_action.gypi'],
1247 }, 1248 },
1248 ], 1249 ],
1249 } 1250 }
OLDNEW
« build/android/gyp/lint.py ('K') | « build/java.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698