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

Side by Side Diff: build/common.gypi

Issue 1847533004: mac: Bump the deployment target to OS X 10.7. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | « no previous file | 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) 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 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after
1955 # someplace that Xcode doesn't know about, set mac_sdk_path to the 1955 # someplace that Xcode doesn't know about, set mac_sdk_path to the
1956 # path to the SDK; when set to a non-empty string, SDK detection 1956 # path to the SDK; when set to a non-empty string, SDK detection
1957 # based on mac_sdk_min will be bypassed entirely. 1957 # based on mac_sdk_min will be bypassed entirely.
1958 'conditions': [ 1958 'conditions': [
1959 ['OS=="ios"', { 1959 ['OS=="ios"', {
1960 # The iOS build can use Xcode's clang, and that will complain 1960 # The iOS build can use Xcode's clang, and that will complain
1961 # about -stdlib=libc++ if the deployment target is not at least 1961 # about -stdlib=libc++ if the deployment target is not at least
1962 # 10.7. 1962 # 10.7.
1963 'mac_deployment_target%': '10.7', 1963 'mac_deployment_target%': '10.7',
1964 }, { # else OS!="ios" 1964 }, { # else OS!="ios"
1965 'mac_deployment_target%': '10.6', 1965 'mac_deployment_target%': '10.7',
Nico 2016/04/04 18:01:23 These can merge again now, right? iOS only cares a
1966 }], 1966 }],
1967 ], 1967 ],
1968 'mac_sdk_min%': '10.10', 1968 'mac_sdk_min%': '10.10',
1969 'mac_sdk_path%': '', 1969 'mac_sdk_path%': '',
1970 }, 1970 },
1971 1971
1972 'mac_sdk_min': '<(mac_sdk_min)', 1972 'mac_sdk_min': '<(mac_sdk_min)',
1973 'mac_sdk_path': '<(mac_sdk_path)', 1973 'mac_sdk_path': '<(mac_sdk_path)',
1974 'mac_deployment_target': '<(mac_deployment_target)', 1974 'mac_deployment_target': '<(mac_deployment_target)',
1975 1975
(...skipping 4404 matching lines...) Expand 10 before | Expand all | Expand 10 after
6380 # settings in target dicts. SYMROOT is a special case, because many other 6380 # settings in target dicts. SYMROOT is a special case, because many other
6381 # Xcode variables depend on it, including variables such as 6381 # Xcode variables depend on it, including variables such as
6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 6382 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 6383 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
6384 # files to appear (when present) in the UI as actual files and not red 6384 # files to appear (when present) in the UI as actual files and not red
6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 6385 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
6386 # and therefore SYMROOT, needs to be set at the project level. 6386 # and therefore SYMROOT, needs to be set at the project level.
6387 'SYMROOT': '<(DEPTH)/xcodebuild', 6387 'SYMROOT': '<(DEPTH)/xcodebuild',
6388 }, 6388 },
6389 } 6389 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698