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

Unified Diff: content/content_shell.gypi

Issue 109013004: Use icudat*.dat file on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move icudtl.dat copy to content_shell framework target Created 6 years, 11 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 | « chrome/chrome_dll_bundle.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_shell.gypi
diff --git a/content/content_shell.gypi b/content/content_shell.gypi
index f3006290c590591d9b9746942ebf6599784d0413..ffebf9c0e1364f27fd03cb60cd35911e9efaa0dc 100644
--- a/content/content_shell.gypi
+++ b/content/content_shell.gypi
@@ -724,24 +724,24 @@
'shell/app/shell_content_main.cc',
'shell/app/shell_content_main.h',
],
- 'postbuilds': [
- {
- # Modify the Info.plist as needed. The script explains why
- # this is needed. This is also done in the chrome target.
- # The framework needs the Breakpad keys if this feature is
- # enabled. It does not need the Keystone keys; these always
- # come from the outer application bundle. The framework
- # doesn't currently use the SCM keys for anything,
- # but this seems like a really good place to store them.
- 'postbuild_name': 'Tweak Info.plist',
- 'action': ['../build/mac/tweak_info_plist.py',
- '--breakpad=1',
- '--keystone=0',
- '--scm=1',
- '--version=<(content_shell_version)',
- '--branding=<(content_shell_product_name)'],
- },
- ],
+ 'postbuilds': [
+ {
+ # Modify the Info.plist as needed. The script explains why
+ # this is needed. This is also done in the chrome target.
+ # The framework needs the Breakpad keys if this feature is
+ # enabled. It does not need the Keystone keys; these always
+ # come from the outer application bundle. The framework
+ # doesn't currently use the SCM keys for anything,
+ # but this seems like a really good place to store them.
+ 'postbuild_name': 'Tweak Info.plist',
+ 'action': ['../build/mac/tweak_info_plist.py',
+ '--breakpad=1',
+ '--keystone=0',
+ '--scm=1',
+ '--version=<(content_shell_version)',
+ '--branding=<(content_shell_product_name)'],
+ },
+ ],
'copies': [
{
# Copy FFmpeg binaries for audio/video support.
@@ -774,6 +774,11 @@
}],
],
}],
+ ['icu_use_data_file_flag==1', {
+ 'mac_bundle_resources': [
+ '<(PRODUCT_DIR)/icudtl.dat',
+ ],
+ }],
],
}, # target content_shell_framework
{
« no previous file with comments | « chrome/chrome_dll_bundle.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698