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

Side by Side Diff: build/common.gypi

Issue 697223003: MacViews: Get chrome/browser/ui/views/frame to compile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@constrained
Patch Set: Add DCHECK Created 6 years, 1 month 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 | chrome/browser/ui/BUILD.gn » ('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 1485 matching lines...) Expand 10 before | Expand all | Expand 10 after
1496 'ozone_platform%': "", 1496 'ozone_platform%': "",
1497 1497
1498 # Ozone platforms to include in the build. 1498 # Ozone platforms to include in the build.
1499 'ozone_platform_caca%': 0, 1499 'ozone_platform_caca%': 0,
1500 'ozone_platform_dri%': 0, 1500 'ozone_platform_dri%': 0,
1501 'ozone_platform_egltest%': 0, 1501 'ozone_platform_egltest%': 0,
1502 'ozone_platform_gbm%': 0, 1502 'ozone_platform_gbm%': 0,
1503 'ozone_platform_ozonex%': 0, 1503 'ozone_platform_ozonex%': 0,
1504 'ozone_platform_test%': 0, 1504 'ozone_platform_test%': 0,
1505 1505
1506 # Whether the browser is non-native (using Views Toolkit) on Mac.
1507 'mac_views_browser%': 0,
1508
1506 'conditions': [ 1509 'conditions': [
1507 ['buildtype=="Official"', { 1510 ['buildtype=="Official"', {
1508 # Continue to embed build meta data in Official builds, basically the 1511 # Continue to embed build meta data in Official builds, basically the
1509 # time it was built. 1512 # time it was built.
1510 # TODO(maruel): This decision should be revisited because having an 1513 # TODO(maruel): This decision should be revisited because having an
1511 # official deterministic build has high value too but MSVC toolset can't 1514 # official deterministic build has high value too but MSVC toolset can't
1512 # generate anything deterministic with WPO enabled AFAIK. 1515 # generate anything deterministic with WPO enabled AFAIK.
1513 'dont_embed_build_metadata%': 0, 1516 'dont_embed_build_metadata%': 0,
1514 }], 1517 }],
1515 # Enable the Syzygy optimization step for the official builds. 1518 # Enable the Syzygy optimization step for the official builds.
(...skipping 4376 matching lines...) Expand 10 before | Expand all | Expand 10 after
5892 # settings in target dicts. SYMROOT is a special case, because many other 5895 # settings in target dicts. SYMROOT is a special case, because many other
5893 # Xcode variables depend on it, including variables such as 5896 # Xcode variables depend on it, including variables such as
5894 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5897 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5895 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5898 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5896 # files to appear (when present) in the UI as actual files and not red 5899 # files to appear (when present) in the UI as actual files and not red
5897 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5900 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5898 # and therefore SYMROOT, needs to be set at the project level. 5901 # and therefore SYMROOT, needs to be set at the project level.
5899 'SYMROOT': '<(DEPTH)/xcodebuild', 5902 'SYMROOT': '<(DEPTH)/xcodebuild',
5900 }, 5903 },
5901 } 5904 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698