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

Unified Diff: build/common.gypi

Issue 24891002: Initial WebUI extension for enhanced bookmarks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use build-time flag to enable Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | chrome/browser/extensions/extension_web_ui.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 08e7198f61a40b3070a062f58fd39c1a742c8052..f6404d3910daa5ff82058fa43aba8f0d7aa76e3f 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -443,6 +443,7 @@
'spdy_proxy_auth_property%' : '',
'spdy_proxy_auth_value%' : '',
'enable_mdns%' : 0,
+ 'enable_enhanced_bookmarks%': 0,
'conditions': [
# A flag for POSIX platforms
@@ -893,6 +894,7 @@
'spdy_proxy_auth_property%': '<(spdy_proxy_auth_property)',
'spdy_proxy_auth_value%': '<(spdy_proxy_auth_value)',
'enable_mdns%' : '<(enable_mdns)',
+ 'enable_enhanced_bookmarks%' : '<(enable_enhanced_bookmarks)',
'v8_optimized_debug': '<(v8_optimized_debug)',
'proprietary_codecs%': '<(proprietary_codecs)',
@@ -1647,6 +1649,9 @@
['enable_mdns==1', {
'grit_defines': ['-D', 'enable_mdns'],
}],
+ ['enable_enhanced_bookmarks==1', {
+ 'grit_defines': ['-D', 'enable_enhanced_bookmarks'],
+ }],
['clang_use_chrome_plugins==1 and OS!="win"', {
'clang_chrome_plugins_flags': [
'<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
@@ -2337,6 +2342,9 @@
}],
['enable_mdns==1', {
'defines': ['ENABLE_MDNS=1'],
+ }],
+ ['enable_enhanced_bookmarks==1', {
+ 'defines': ['ENABLE_ENHANCED_BOOKMARKS=1'],
}]
], # conditions for 'target_defaults'
'target_conditions': [
« no previous file with comments | « no previous file | chrome/browser/browser_resources.grd » ('j') | chrome/browser/extensions/extension_web_ui.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698