OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # This gypi file contains lists of XIB files that are used by Chromium. The | 5 # This gypi file contains lists of XIB files that are used by Chromium. The |
6 # lists are divided by those files that need to be run through the localizer | 6 # lists are divided by those files that need to be run through the localizer |
7 # tool and those that do not. A XIB should be listed in either one or the | 7 # tool and those that do not. A XIB should be listed in either one or the |
8 # other, but not both. | 8 # other, but not both. |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
11 'mac_translated_xibs': [ | 11 'mac_translated_xibs': [ |
12 'app/nibs/ActionBoxMenuItem.xib', | |
13 'app/nibs/AvatarMenuItem.xib', | 12 'app/nibs/AvatarMenuItem.xib', |
14 'app/nibs/BookmarkAllTabs.xib', | 13 'app/nibs/BookmarkAllTabs.xib', |
15 'app/nibs/BookmarkBar.xib', | 14 'app/nibs/BookmarkBar.xib', |
16 'app/nibs/BookmarkBubble.xib', | 15 'app/nibs/BookmarkBubble.xib', |
17 'app/nibs/BookmarkEditor.xib', | 16 'app/nibs/BookmarkEditor.xib', |
18 'app/nibs/BookmarkNameFolder.xib', | 17 'app/nibs/BookmarkNameFolder.xib', |
19 'app/nibs/BrowserWindow.xib', | 18 'app/nibs/BrowserWindow.xib', |
20 'app/nibs/ChromeToMobileBubble.xib', | 19 'app/nibs/ChromeToMobileBubble.xib', |
21 'app/nibs/CollectedCookies.xib', | 20 'app/nibs/CollectedCookies.xib', |
22 'app/nibs/ContentBlockedCookies.xib', | 21 'app/nibs/ContentBlockedCookies.xib', |
(...skipping 23 matching lines...) Expand all Loading... |
46 'app/nibs/OneClickSigninBubble.xib', | 45 'app/nibs/OneClickSigninBubble.xib', |
47 'app/nibs/SadTab.xib', | 46 'app/nibs/SadTab.xib', |
48 'app/nibs/SaveAccessoryView.xib', | 47 'app/nibs/SaveAccessoryView.xib', |
49 'app/nibs/SpeechRecognitionBubble.xib', | 48 'app/nibs/SpeechRecognitionBubble.xib', |
50 'app/nibs/TaskManager.xib', | 49 'app/nibs/TaskManager.xib', |
51 'app/nibs/Toolbar.xib', | 50 'app/nibs/Toolbar.xib', |
52 'app/nibs/WrenchMenu.xib', | 51 'app/nibs/WrenchMenu.xib', |
53 ], # mac_translated_xibs | 52 ], # mac_translated_xibs |
54 'mac_untranslated_xibs': [ | 53 'mac_untranslated_xibs': [ |
55 'app/nibs/AboutIPC.xib', | 54 'app/nibs/AboutIPC.xib', |
| 55 'app/nibs/ActionBoxMenuItem.xib', |
56 'app/nibs/BookmarkBarFolderWindow.xib', | 56 'app/nibs/BookmarkBarFolderWindow.xib', |
57 'app/nibs/ExtensionInstalledBubbleBundle.xib', | 57 'app/nibs/ExtensionInstalledBubbleBundle.xib', |
58 'app/nibs/FindBar.xib', | 58 'app/nibs/FindBar.xib', |
59 'app/nibs/GlobalErrorBubble.xib', | 59 'app/nibs/GlobalErrorBubble.xib', |
60 'app/nibs/HungRendererDialog.xib', | 60 'app/nibs/HungRendererDialog.xib', |
61 'app/nibs/InfoBar.xib', | 61 'app/nibs/InfoBar.xib', |
62 'app/nibs/InfoBarContainer.xib', | 62 'app/nibs/InfoBarContainer.xib', |
63 'app/nibs/Notification.xib', | 63 'app/nibs/Notification.xib', |
64 'app/nibs/Panel.xib', | 64 'app/nibs/Panel.xib', |
65 'app/nibs/PreviewableContents.xib', | 65 'app/nibs/PreviewableContents.xib', |
66 'app/nibs/TabView.xib', | 66 'app/nibs/TabView.xib', |
67 ], # mac_untranslated_xibs | 67 ], # mac_untranslated_xibs |
68 'mac_all_xibs': [ | 68 'mac_all_xibs': [ |
69 '<@(mac_translated_xibs)', | 69 '<@(mac_translated_xibs)', |
70 '<@(mac_untranslated_xibs)', | 70 '<@(mac_untranslated_xibs)', |
71 ], # mac_all_xibs | 71 ], # mac_all_xibs |
72 }, # variables | 72 }, # variables |
73 } | 73 } |
OLD | NEW |