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

Side by Side Diff: build/common.gypi

Issue 206923002: Adds plumbing to pass WebUI mojo::Handle from browser to renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 2 trunk Created 6 years, 9 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
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 1742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1753 }], 1753 }],
1754 ['chromeos==1', { 1754 ['chromeos==1', {
1755 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'], 1755 'grit_defines': ['-D', 'chromeos', '-D', 'scale_factors=2x'],
1756 }], 1756 }],
1757 ['desktop_linux==1', { 1757 ['desktop_linux==1', {
1758 'grit_defines': ['-D', 'desktop_linux'], 1758 'grit_defines': ['-D', 'desktop_linux'],
1759 }], 1759 }],
1760 ['toolkit_views==1', { 1760 ['toolkit_views==1', {
1761 'grit_defines': ['-D', 'toolkit_views'], 1761 'grit_defines': ['-D', 'toolkit_views'],
1762 }], 1762 }],
1763 ['use_mojo==1', {
1764 'grit_defines': ['-D', 'use_mojo'],
1765 }],
1763 ['toolkit_uses_gtk==1', { 1766 ['toolkit_uses_gtk==1', {
1764 'grit_defines': ['-D', 'toolkit_uses_gtk'], 1767 'grit_defines': ['-D', 'toolkit_uses_gtk'],
1765 }], 1768 }],
1766 ['use_aura==1', { 1769 ['use_aura==1', {
1767 'grit_defines': ['-D', 'use_aura'], 1770 'grit_defines': ['-D', 'use_aura'],
1768 }], 1771 }],
1769 ['use_ash==1', { 1772 ['use_ash==1', {
1770 'grit_defines': ['-D', 'use_ash'], 1773 'grit_defines': ['-D', 'use_ash'],
1771 }], 1774 }],
1772 ['use_nss==1', { 1775 ['use_nss==1', {
(...skipping 3371 matching lines...) Expand 10 before | Expand all | Expand 10 after
5144 # settings in target dicts. SYMROOT is a special case, because many other 5147 # settings in target dicts. SYMROOT is a special case, because many other
5145 # Xcode variables depend on it, including variables such as 5148 # Xcode variables depend on it, including variables such as
5146 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 5149 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
5147 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 5150 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
5148 # files to appear (when present) in the UI as actual files and not red 5151 # files to appear (when present) in the UI as actual files and not red
5149 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 5152 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
5150 # and therefore SYMROOT, needs to be set at the project level. 5153 # and therefore SYMROOT, needs to be set at the project level.
5151 'SYMROOT': '<(DEPTH)/xcodebuild', 5154 'SYMROOT': '<(DEPTH)/xcodebuild',
5152 }, 5155 },
5153 } 5156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698