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

Unified Diff: build/common.gypi

Issue 11064002: Adding support for alternate default wallpaper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: added derat@ change to common.gypi Created 8 years, 2 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 829ed4ab0276ea13b9531eaa7745c0f9b5e77947..03716eb4f6824f19eb95df9bbd10373c2a392ca6 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -308,6 +308,9 @@
# disabling depends on the platform.
'enable_themes%': 1,
+ # Uses OEM-specific wallpaper resources on Chrome OS.
+ 'use_oem_wallpaper%': 0,
+
# Enables support for background apps.
'enable_background%': 1,
@@ -651,6 +654,7 @@
'enable_protector_service%': '<(enable_protector_service)',
'enable_session_service%': '<(enable_session_service)',
'enable_themes%': '<(enable_themes)',
+ 'use_oem_wallpaper%': '<(use_oem_wallpaper)',
'enable_background%': '<(enable_background)',
'linux_use_gold_binary%': '<(linux_use_gold_binary)',
'linux_use_gold_flags%': '<(linux_use_gold_flags)',
@@ -1270,6 +1274,9 @@
['enable_themes==1', {
'grit_defines': ['-D', 'enable_themes'],
}],
+ ['use_oem_wallpaper==1', {
+ 'grit_defines': ['-D', 'use_oem_wallpaper'],
+ }],
['clang_use_chrome_plugins==1 and OS!="win"', {
'clang_chrome_plugins_flags': [
'<!@(<(DEPTH)/tools/clang/scripts/plugin_flags.sh)'
« 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