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

Side by Side Diff: build/common.gypi

Issue 10839003: Pass enable_themes to grit and use for html conditions regarding themes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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/resources/about_version.html » ('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 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 }], 1148 }],
1149 ['OS=="mac"', { 1149 ['OS=="mac"', {
1150 'grit_defines': ['-D', 'scale_factors=2x'], 1150 'grit_defines': ['-D', 'scale_factors=2x'],
1151 }], 1151 }],
1152 ['enable_extensions==1', { 1152 ['enable_extensions==1', {
1153 'grit_defines': ['-D', 'enable_extensions'], 1153 'grit_defines': ['-D', 'enable_extensions'],
1154 }], 1154 }],
1155 ['enable_printing==1', { 1155 ['enable_printing==1', {
1156 'grit_defines': ['-D', 'enable_printing'], 1156 'grit_defines': ['-D', 'enable_printing'],
1157 }], 1157 }],
1158 ['enable_themes==1', {
1159 'grit_defines': ['-D', 'enable_themes'],
1160 }],
1158 ['clang_use_chrome_plugins==1 and OS!="win"', { 1161 ['clang_use_chrome_plugins==1 and OS!="win"', {
1159 'clang_chrome_plugins_flags': [ 1162 'clang_chrome_plugins_flags': [
1160 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)' 1163 '<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
1161 ], 1164 ],
1162 }], 1165 }],
1163 1166
1164 ['enable_web_intents_tag==1', { 1167 ['enable_web_intents_tag==1', {
1165 'grit_defines': ['-D', 'enable_web_intents_tag'], 1168 'grit_defines': ['-D', 'enable_web_intents_tag'],
1166 }], 1169 }],
1167 1170
(...skipping 2165 matching lines...) Expand 10 before | Expand all | Expand 10 after
3333 # settings in target dicts. SYMROOT is a special case, because many other 3336 # settings in target dicts. SYMROOT is a special case, because many other
3334 # Xcode variables depend on it, including variables such as 3337 # Xcode variables depend on it, including variables such as
3335 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3338 # 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 3339 # 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 3340 # 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, 3341 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3339 # and therefore SYMROOT, needs to be set at the project level. 3342 # and therefore SYMROOT, needs to be set at the project level.
3340 'SYMROOT': '<(DEPTH)/xcodebuild', 3343 'SYMROOT': '<(DEPTH)/xcodebuild',
3341 }, 3344 },
3342 } 3345 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/about_version.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698