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

Side by Side Diff: tools/gyp/xcode.gypi

Issue 584813002: Avoid undefined variable in gyp files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « tools/gyp/configurations_xcode.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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 # Mac OS X SDK and deployment target support. 7 # Mac OS X SDK and deployment target support.
8 # The SDK identifies the version of the system headers that will be used, 8 # The SDK identifies the version of the system headers that will be used,
9 # and corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time macro. 9 # and corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time macro.
10 # "Maximum allowed" refers to the operating system version whose APIs are 10 # "Maximum allowed" refers to the operating system version whose APIs are
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 45 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
46 # and therefore SYMROOT, needs to be set at the project level. 46 # and therefore SYMROOT, needs to be set at the project level.
47 'SYMROOT': '<(DEPTH)/xcodebuild', 47 'SYMROOT': '<(DEPTH)/xcodebuild',
48 48
49 # It is here to make it possible to run binaries with shared libraries. 49 # It is here to make it possible to run binaries with shared libraries.
50 # However, it may create problems if you move the shared library. Also, 50 # However, it may create problems if you move the shared library. Also,
51 # this may not be appropriate for "release release" builds. 51 # this may not be appropriate for "release release" builds.
52 # Perhaps we should set it to @rpath instead. See 52 # Perhaps we should set it to @rpath instead. See
53 # http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conce ptual/DynamicLibraries/100-Articles/RunpathDependentLibraries.html#//apple_ref/d oc/uid/TP40008306-SW1 53 # http://developer.apple.com/library/mac/#documentation/DeveloperTools/Conce ptual/DynamicLibraries/100-Articles/RunpathDependentLibraries.html#//apple_ref/d oc/uid/TP40008306-SW1
54 'INSTALL_PATH': '$(TARGET_BUILD_DIR)', 54 'INSTALL_PATH': '$(TARGET_BUILD_DIR)',
55
56 # This must go here because mac_deployment_target is defined in this file,
57 # which is only included on mac, and configurations_xcode.gypi is included
58 # on all platforms, so it would be an undefined variable there.
59 # Move this to configurations_xcode if we start including it only on mac.
60 'MACOSX_DEPLOYMENT_TARGET': '<(mac_deployment_target)',
55 }, 61 },
56 } 62 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_xcode.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698