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

Side by Side Diff: chrome/chrome.gyp

Issue 165893002: Moving version script and gypi file to build\util. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Found the goof... tools -> util... :-/ Created 6 years, 10 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
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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 ], # conditions 83 ], # conditions
84 }, # variables 84 }, # variables
85 'includes': [ 85 'includes': [
86 # Place some targets in gypi files to reduce contention on this file. 86 # Place some targets in gypi files to reduce contention on this file.
87 # By using an include, we keep everything in a single xcodeproj file. 87 # By using an include, we keep everything in a single xcodeproj file.
88 # Note on Win64 targets: targets that end with win64 be used 88 # Note on Win64 targets: targets that end with win64 be used
89 # on 64-bit Windows only. Targets that end with nacl_win64 should be used 89 # on 64-bit Windows only. Targets that end with nacl_win64 should be used
90 # by Native Client only. 90 # by Native Client only.
91 # NOTE: Most new includes should go in the OS!="ios" condition below. 91 # NOTE: Most new includes should go in the OS!="ios" condition below.
92 '../build/chrome_settings.gypi', 92 '../build/chrome_settings.gypi',
93 '../build/util/version.gypi',
93 '../build/win_precompile.gypi', 94 '../build/win_precompile.gypi',
94 'chrome_browser.gypi', 95 'chrome_browser.gypi',
95 'chrome_browser_ui.gypi', 96 'chrome_browser_ui.gypi',
96 'chrome_common.gypi', 97 'chrome_common.gypi',
97 'chrome_installer_util.gypi', 98 'chrome_installer_util.gypi',
98 'version.gypi',
99 '../components/nacl/nacl_defines.gypi', 99 '../components/nacl/nacl_defines.gypi',
100 ], 100 ],
101 'conditions': [ 101 'conditions': [
102 ['OS!="ios"', { 102 ['OS!="ios"', {
103 'includes': [ 103 'includes': [
104 'chrome_browser_extensions.gypi', 104 'chrome_browser_extensions.gypi',
105 'chrome_dll.gypi', 105 'chrome_dll.gypi',
106 'chrome_exe.gypi', 106 'chrome_exe.gypi',
107 'chrome_installer.gypi', 107 'chrome_installer.gypi',
108 'chrome_renderer.gypi', 108 'chrome_renderer.gypi',
(...skipping 994 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 'sources': [ 1103 'sources': [
1104 'service/cloud_print/print_system_dummy.cc', 1104 'service/cloud_print/print_system_dummy.cc',
1105 ], 1105 ],
1106 }], 1106 }],
1107 ], 1107 ],
1108 }, 1108 },
1109 ], 1109 ],
1110 }], 1110 }],
1111 ], # 'conditions' 1111 ], # 'conditions'
1112 } 1112 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698