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

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: Rebase 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') | no next file with comments »
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 702135fd54dda83b2fedbea8d113dade39a0a8de..f9d2ca0ad8be559af01149becf8be2db7a505f89 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -445,6 +445,7 @@
'spdy_proxy_auth_property%' : '',
'spdy_proxy_auth_value%' : '',
'enable_mdns%' : 0,
+ 'enable_enhanced_bookmarks%': 0,
'conditions': [
# A flag for POSIX platforms
@@ -895,6 +896,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)',
@@ -1649,6 +1651,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)'
@@ -2339,6 +2344,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698