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

Side by Side Diff: build/common.gypi

Issue 28305: GYP it, GYP it good (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 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
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'chromium_code%': 0, 7 'chromium_code%': 0,
8 }, 8 },
9 'target_defaults': { 9 'target_defaults': {
10 # TODO(bradnelson): This should really be able to be either: 10 # TODO(bradnelson): This should really be able to be either:
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 # of each dict and use it to apply settings on a file-wide basis. Most 197 # of each dict and use it to apply settings on a file-wide basis. Most
198 # settings should not be here, they should be in target-specific 198 # settings should not be here, they should be in target-specific
199 # xcode_settings sections, or better yet, should use non-Xcode-specific 199 # xcode_settings sections, or better yet, should use non-Xcode-specific
200 # settings in target dicts. SYMROOT is a special case, because many other 200 # settings in target dicts. SYMROOT is a special case, because many other
201 # Xcode variables depend on it, including variables such as 201 # Xcode variables depend on it, including variables such as
202 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 202 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
203 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 203 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
204 # files to appear (when present) in the UI as actual files and not red 204 # files to appear (when present) in the UI as actual files and not red
205 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 205 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
206 # and therefore SYMROOT, needs to be set at the project level. 206 # and therefore SYMROOT, needs to be set at the project level.
207 # 207 'SYMROOT': '<(DEPTH)/xcodebuild',
208 # xcodebuild_gyp is a temporary name to avoid colliding with the xcodebuild
209 # directory used by the non-gyp Xcode build system. When the gyp-based
210 # Xcode build system replaces the older system, this should be changed to
211 # simply "xcodebuild" or some other suitable name.
212 'SYMROOT': '<(DEPTH)/xcodebuild_gyp',
213 }, 208 },
214 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698