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

Unified Diff: build/common.gypi

Issue 16544004: Add use_spring_wallpaper flag for Spring default wallpaper (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | « ash/resources/ash_wallpaper_resources.grd ('k') | no next file » | 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 5516c63fb77467ce06a27fb98cbce8b1f70b2b7c..d75767ec4e793d2578e63bbd74bd6ee0eed35cd6 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -347,6 +347,9 @@
# Enables autofill dialog and associated features; disabled by default.
'enable_autofill_dialog%' : 0,
+ # Uses spring wallpaper resources on Spring.
+ 'use_spring_wallpaper%': 0,
+
# Uses OEM-specific wallpaper resources on Chrome OS.
'use_oem_wallpaper%': 0,
@@ -792,6 +795,7 @@
'enable_session_service%': '<(enable_session_service)',
'enable_themes%': '<(enable_themes)',
'enable_autofill_dialog%': '<(enable_autofill_dialog)',
+ 'use_spring_wallpaper%': '<(use_spring_wallpaper)',
'use_oem_wallpaper%': '<(use_oem_wallpaper)',
'enable_background%': '<(enable_background)',
'linux_use_gold_binary%': '<(linux_use_gold_binary)',
@@ -1543,6 +1547,9 @@
['enable_themes==1', {
'grit_defines': ['-D', 'enable_themes'],
}],
+ ['use_spring_wallpaper==1', {
+ 'grit_defines': ['-D', 'use_spring_wallpaper'],
+ }],
['use_oem_wallpaper==1', {
'grit_defines': ['-D', 'use_oem_wallpaper'],
}],
« no previous file with comments | « ash/resources/ash_wallpaper_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698