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

Side by Side Diff: build/common.gypi

Issue 10816040: Change the Mac OS X Deployment Target from 10.5 to 10.6. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge Created 8 years, 4 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 | « no previous file | chrome/browser/ui/cocoa/browser_window_controller_unittest.mm » ('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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 # and corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time macro. 634 # and corresponds to the MAC_OS_X_VERSION_MAX_ALLOWED compile-time macro.
635 # "Maximum allowed" refers to the operating system version whose APIs are 635 # "Maximum allowed" refers to the operating system version whose APIs are
636 # available in the headers. 636 # available in the headers.
637 # The deployment target identifies the minimum system version that the 637 # The deployment target identifies the minimum system version that the
638 # built products are expected to function on. It corresponds to the 638 # built products are expected to function on. It corresponds to the
639 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro. 639 # MAC_OS_X_VERSION_MIN_REQUIRED compile-time macro.
640 # To ensure these macros are available, #include <AvailabilityMacros.h>. 640 # To ensure these macros are available, #include <AvailabilityMacros.h>.
641 # Additional documentation on these macros is available at 641 # Additional documentation on these macros is available at
642 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTIO N3 642 # http://developer.apple.com/mac/library/technotes/tn2002/tn2064.html#SECTIO N3
643 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the 643 # Chrome normally builds with the Mac OS X 10.6 SDK and sets the
644 # deployment target to 10.5. Other projects, such as O3D, may override 644 # deployment target to 10.6. Other projects, such as O3D, may override
645 # these defaults. If the SDK is installed someplace that Xcode doesn't 645 # these defaults. If the SDK is installed someplace that Xcode doesn't
646 # know about, set mac_sdk_path to the path to the SDK. If set to a 646 # know about, set mac_sdk_path to the path to the SDK. If set to a
647 # non-empty string, mac_sdk_path will be used in preference to mac_sdk. 647 # non-empty string, mac_sdk_path will be used in preference to mac_sdk.
648 # mac_sdk gets its default value elsewhere in this file. 648 # mac_sdk gets its default value elsewhere in this file.
649 'mac_sdk_path%': '', 649 'mac_sdk_path%': '',
650 'mac_deployment_target%': '10.5', 650 'mac_deployment_target%': '10.6',
651 651
652 # The default value for mac_strip in target_defaults. This cannot be 652 # The default value for mac_strip in target_defaults. This cannot be
653 # set there, per the comment about variable% in a target_defaults. 653 # set there, per the comment about variable% in a target_defaults.
654 'mac_strip_release%': 1, 654 'mac_strip_release%': 1,
655 655
656 # Set to 1 to enable code coverage. In addition to build changes 656 # Set to 1 to enable code coverage. In addition to build changes
657 # (e.g. extra CFLAGS), also creates a new target in the src/chrome 657 # (e.g. extra CFLAGS), also creates a new target in the src/chrome
658 # project file called "coverage". 658 # project file called "coverage".
659 # Currently ignored on Windows. 659 # Currently ignored on Windows.
660 'coverage%': 0, 660 'coverage%': 0,
(...skipping 2672 matching lines...) Expand 10 before | Expand all | Expand 10 after
3333 # settings in target dicts. SYMROOT is a special case, because many other 3333 # settings in target dicts. SYMROOT is a special case, because many other
3334 # Xcode variables depend on it, including variables such as 3334 # Xcode variables depend on it, including variables such as
3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3336 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3337 # files to appear (when present) in the UI as actual files and not red 3337 # files to appear (when present) in the UI as actual files and not red
3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3338 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3339 # and therefore SYMROOT, needs to be set at the project level. 3339 # and therefore SYMROOT, needs to be set at the project level.
3340 'SYMROOT': '<(DEPTH)/xcodebuild', 3340 'SYMROOT': '<(DEPTH)/xcodebuild',
3341 }, 3341 },
3342 } 3342 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/browser_window_controller_unittest.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698