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

Unified Diff: chrome/chrome.gyp

Issue 160328: Mac l10n work (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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/app/nibs/Toolbar.xib ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
===================================================================
--- chrome/chrome.gyp (revision 22729)
+++ chrome/chrome.gyp (working copy)
@@ -2046,6 +2046,8 @@
'../third_party/GTM/AppKit/GTMTheme.m',
'../third_party/GTM/AppKit/GTMUILocalizer.h',
'../third_party/GTM/AppKit/GTMUILocalizer.m',
+ '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.h',
+ '../third_party/GTM/AppKit/GTMUILocalizerAndLayoutTweaker.m',
# Build necessary Mozilla sources
'../third_party/mozilla/include/NSPasteboard+Utils.h',
'../third_party/mozilla/include/NSPasteboard+Utils.mm',
@@ -2072,6 +2074,45 @@
# This block of actions are used to extract the localization data
# from xib files and generate a localizer out of it.
{
Mark Mentovai 2009/08/07 14:16:13 Seems like we might want to think about how to tur
TVL 2009/08/07 14:25:19 Yea, I wondered about that when I first did main m
+ 'action_name': 'process_bookmark_bar_xib',
+ 'process_outputs_as_sources': 1,
+ 'inputs': [
+ '<(mac_xib_localizer_tool_path)',
+ 'app/nibs/BookmarkBar.xib'
+ ],
+ 'outputs': [
+ '<(mac_xib_localizers_dir)/bookmark_bar_localizer.h',
+ '<(mac_xib_localizers_dir)/bookmark_bar_localizer.mm',
+ ],
+ 'action': ['<@(_inputs)', '<@(_outputs)'],
+ },
+ {
+ 'action_name': 'process_bookmark_editor_xib',
+ 'process_outputs_as_sources': 1,
+ 'inputs': [
+ '<(mac_xib_localizer_tool_path)',
+ 'app/nibs/BookmarkEditor.xib'
+ ],
+ 'outputs': [
+ '<(mac_xib_localizers_dir)/bookmark_editor_localizer.h',
+ '<(mac_xib_localizers_dir)/bookmark_editor_localizer.mm',
+ ],
+ 'action': ['<@(_inputs)', '<@(_outputs)'],
+ },
+ {
+ 'action_name': 'process_bookmark_name_folder_xib',
+ 'process_outputs_as_sources': 1,
+ 'inputs': [
+ '<(mac_xib_localizer_tool_path)',
+ 'app/nibs/BookmarkNameFolder.xib'
+ ],
+ 'outputs': [
+ '<(mac_xib_localizers_dir)/bookmark_name_folder_localizer.h',
+ '<(mac_xib_localizers_dir)/bookmark_name_folder_localizer.mm',
+ ],
+ 'action': ['<@(_inputs)', '<@(_outputs)'],
+ },
+ {
'action_name': 'process_mainmenu_xib',
'process_outputs_as_sources': 1,
'inputs': [
@@ -2084,6 +2125,32 @@
],
'action': ['<@(_inputs)', '<@(_outputs)'],
},
+ {
+ 'action_name': 'process_tab_view_xib',
+ 'process_outputs_as_sources': 1,
+ 'inputs': [
+ '<(mac_xib_localizer_tool_path)',
+ 'app/nibs/TabView.xib'
+ ],
+ 'outputs': [
+ '<(mac_xib_localizers_dir)/tab_view_localizer.h',
+ '<(mac_xib_localizers_dir)/tab_view_localizer.mm',
+ ],
+ 'action': ['<@(_inputs)', '<@(_outputs)'],
+ },
+ {
+ 'action_name': 'process_toolbar_xib',
+ 'process_outputs_as_sources': 1,
+ 'inputs': [
+ '<(mac_xib_localizer_tool_path)',
+ 'app/nibs/Toolbar.xib'
+ ],
+ 'outputs': [
+ '<(mac_xib_localizers_dir)/toolbar_localizer.h',
+ '<(mac_xib_localizers_dir)/toolbar_localizer.mm',
+ ],
+ 'action': ['<@(_inputs)', '<@(_outputs)'],
+ },
# TODO(tvl): add other xibs
],
}],
« no previous file with comments | « chrome/app/nibs/Toolbar.xib ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698