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

Side by Side Diff: build/java_apk.gypi

Issue 17467003: [android] Switch test scripts to use last modified time instead of md5sum when checking dependencie… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « build/android/pylib/android_commands.py ('k') | tools/android/android_tools.gyp » ('j') | 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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 'conditions': [ 240 'conditions': [
241 ['gyp_managed_install == 1', { 241 ['gyp_managed_install == 1', {
242 'variables': { 242 'variables': {
243 'libraries_top_dir': '<(intermediate_dir)/lib.stripped', 243 'libraries_top_dir': '<(intermediate_dir)/lib.stripped',
244 'libraries_source_dir': '<(libraries_top_dir)/lib/<(android_app_abi) ', 244 'libraries_source_dir': '<(libraries_top_dir)/lib/<(android_app_abi) ',
245 'device_library_dir': '<(device_intermediate_dir)/lib.stripped', 245 'device_library_dir': '<(device_intermediate_dir)/lib.stripped',
246 }, 246 },
247 'dependencies': [ 247 'dependencies': [
248 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum', 248 '<(DEPTH)/tools/android/md5sum/md5sum.gyp:md5sum',
249 '<(DEPTH)/build/android/setup.gyp:get_build_device_configurations', 249 '<(DEPTH)/build/android/setup.gyp:get_build_device_configurations',
250 '<(DEPTH)/tools/android/timemodified/timemodified.gyp:timemodified',
250 ], 251 ],
251 'actions': [ 252 'actions': [
252 { 253 {
253 'includes': ['../build/android/push_libraries.gypi'], 254 'includes': ['../build/android/push_libraries.gypi'],
254 }, 255 },
255 { 256 {
256 'action_name': 'create device library symlinks', 257 'action_name': 'create device library symlinks',
257 'message': 'Creating links on device for <(_target_name).', 258 'message': 'Creating links on device for <(_target_name).',
258 'inputs': [ 259 'inputs': [
259 '<(DEPTH)/build/android/gyp/util/build_utils.py', 260 '<(DEPTH)/build/android/gyp/util/build_utils.py',
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
628 '<(DEPTH)/build/android/ant/apk-package.xml', 629 '<(DEPTH)/build/android/ant/apk-package.xml',
629 630
630 # Add list of inputs to the command line, so if inputs change 631 # Add list of inputs to the command line, so if inputs change
631 # (e.g. if a Java file is removed), the command will be re-run. 632 # (e.g. if a Java file is removed), the command will be re-run.
632 # TODO(newt): remove this once crbug.com/177552 is fixed in ninja. 633 # TODO(newt): remove this once crbug.com/177552 is fixed in ninja.
633 '-DTHIS_IS_IGNORED=>!(echo \'>(_inputs)\' | md5sum)', 634 '-DTHIS_IS_IGNORED=>!(echo \'>(_inputs)\' | md5sum)',
634 ] 635 ]
635 }, 636 },
636 ], 637 ],
637 } 638 }
OLDNEW
« no previous file with comments | « build/android/pylib/android_commands.py ('k') | tools/android/android_tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698