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

Side by Side Diff: build/common.gypi

Issue 663553002: Fix syntax in build/common.gypi. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 1847 matching lines...) Expand 10 before | Expand all | Expand 10 after
1858 # chrome/app/theme/chromium/BRANDING and 1858 # chrome/app/theme/chromium/BRANDING and
1859 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get 1859 # chrome/app/theme/google_chrome/BRANDING, but is necessary to get
1860 # these names into the build system. 1860 # these names into the build system.
1861 ['branding=="Chrome"', { 1861 ['branding=="Chrome"', {
1862 'mac_product_name%': 'Google Chrome', 1862 'mac_product_name%': 'Google Chrome',
1863 }, { # else: branding!="Chrome" 1863 }, { # else: branding!="Chrome"
1864 'mac_product_name%': 'Chromium', 1864 'mac_product_name%': 'Chromium',
1865 }], 1865 }],
1866 # Official mac builds require a specific OS X SDK, but iOS and 1866 # Official mac builds require a specific OS X SDK, but iOS and
1867 # non-official mac builds do not. 1867 # non-official mac builds do not.
1868 ['branding=="Chrome" and buildtype=="Official" and OS==mac', { 1868 ['branding=="Chrome" and buildtype=="Official" and OS=="mac"', {
1869 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac _sdk_min) --sdk_path=<(mac_sdk_path))', 1869 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py --verify <(mac _sdk_min) --sdk_path=<(mac_sdk_path))',
1870 }, { 1870 }, {
1871 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min) )', 1871 'mac_sdk%': '<!(python <(DEPTH)/build/mac/find_sdk.py <(mac_sdk_min) )',
1872 }], 1872 }],
1873 ['branding=="Chrome" and buildtype=="Official"', { 1873 ['branding=="Chrome" and buildtype=="Official"', {
1874 # Enable uploading crash dumps. 1874 # Enable uploading crash dumps.
1875 'mac_breakpad_uploads%': 1, 1875 'mac_breakpad_uploads%': 1,
1876 # Enable dumping symbols at build time for use by Mac Breakpad. 1876 # Enable dumping symbols at build time for use by Mac Breakpad.
1877 'mac_breakpad%': 1, 1877 'mac_breakpad%': 1,
1878 # Enable Keystone auto-update support. 1878 # Enable Keystone auto-update support.
(...skipping 3871 matching lines...) Expand 10 before | Expand all | Expand 10 after
5750 # settings in target dicts. SYMROOT is a special case, because many other 5750 # settings in target dicts. SYMROOT is a special case, because many other
5751 # Xcode variables depend on it, including variables such as 5751 # Xcode variables depend on it, including variables such as
5752 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5752 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5753 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5753 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5754 # files to appear (when present) in the UI as actual files and not red 5754 # files to appear (when present) in the UI as actual files and not red
5755 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5755 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5756 # and therefore SYMROOT, needs to be set at the project level. 5756 # and therefore SYMROOT, needs to be set at the project level.
5757 'SYMROOT': '<(DEPTH)/xcodebuild', 5757 'SYMROOT': '<(DEPTH)/xcodebuild',
5758 }, 5758 },
5759 } 5759 }
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