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

Side by Side Diff: components/cronet.gypi

Issue 623403002: Generate ChromeVersionConstants.java at build time. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed android_aosp Created 6 years, 2 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
« no previous file with comments | « chrome/chrome_browser.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 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 { 5 {
6 'conditions': [ 6 'conditions': [
7 ['OS=="android" and use_icu_alternatives_on_android==1', { 7 ['OS=="android" and use_icu_alternatives_on_android==1', {
8 # TODO(mef): Figure out what needs to be done for gn script. 8 # TODO(mef): Figure out what needs to be done for gn script.
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 'version_py_path': '<(DEPTH)/build/util/version.py', 69 'version_py_path': '<(DEPTH)/build/util/version.py',
70 'version_path': '<(DEPTH)/chrome/VERSION', 70 'version_path': '<(DEPTH)/chrome/VERSION',
71 'template_input_path': 'cronet/android/java/src/org/chromium/net /Version.template', 71 'template_input_path': 'cronet/android/java/src/org/chromium/net /Version.template',
72 }, 72 },
73 'inputs': [ 73 'inputs': [
74 '<(template_input_path)', 74 '<(template_input_path)',
75 '<(version_path)', 75 '<(version_path)',
76 '<(lastchange_path)', 76 '<(lastchange_path)',
77 ], 77 ],
78 'outputs': [ 78 'outputs': [
79 '<(SHARED_INTERMEDIATE_DIR)/templates/org/chromium/cronet/Versio n.java', 79 '<(SHARED_INTERMEDIATE_DIR)/templates/<(_target_name)/org/chromi um/cronet/Version.java',
80 ], 80 ],
81 'action': [ 81 'action': [
82 'python', 82 'python',
83 '<(version_py_path)', 83 '<(version_py_path)',
84 '-f', '<(version_path)', 84 '-f', '<(version_path)',
85 '-f', '<(lastchange_path)', 85 '-f', '<(lastchange_path)',
86 '<(template_input_path)', 86 '<(template_input_path)',
87 '<@(_outputs)', 87 '<@(_outputs)',
88 ], 88 ],
89 'message': 'Generating version information', 89 'message': 'Generating version information',
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 'java_in_dir': 'cronet/android/test/javatests', 474 'java_in_dir': 'cronet/android/test/javatests',
475 'resource_dir': 'cronet/android/test/res', 475 'resource_dir': 'cronet/android/test/res',
476 'is_test_apk': 1, 476 'is_test_apk': 1,
477 }, 477 },
478 'includes': [ '../build/java_apk.gypi' ], 478 'includes': [ '../build/java_apk.gypi' ],
479 }, 479 },
480 ], 480 ],
481 }], # OS=="android" 481 }], # OS=="android"
482 ], 482 ],
483 } 483 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698