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

Side by Side Diff: chrome/chrome_nibs.gypi

Issue 1929113002: [Mac/GN] Define a GN file for all the XIB files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « chrome/app/nibs/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 # GN version: //chrome/app/nibs
10 'variables': { 11 'variables': {
11 'mac_translated_xibs': [ 12 'mac_translated_xibs': [
12 'app/nibs/AppMenu.xib', 13 'app/nibs/AppMenu.xib',
13 'app/nibs/AvatarMenuItem.xib', 14 'app/nibs/AvatarMenuItem.xib',
14 'app/nibs/BookmarkAllTabs.xib', 15 'app/nibs/BookmarkAllTabs.xib',
15 'app/nibs/BookmarkBar.xib', 16 'app/nibs/BookmarkBar.xib',
16 'app/nibs/BookmarkBubble.xib', 17 'app/nibs/BookmarkBubble.xib',
17 'app/nibs/BookmarkEditor.xib', 18 'app/nibs/BookmarkEditor.xib',
18 'app/nibs/BookmarkNameFolder.xib', 19 'app/nibs/BookmarkNameFolder.xib',
19 'app/nibs/CollectedCookies.xib', 20 'app/nibs/CollectedCookies.xib',
(...skipping 12 matching lines...) Expand all
32 'app/nibs/DownloadShelf.xib', 33 'app/nibs/DownloadShelf.xib',
33 'app/nibs/EditSearchEngine.xib', 34 'app/nibs/EditSearchEngine.xib',
34 'app/nibs/ExclusiveAccessBubble.xib', 35 'app/nibs/ExclusiveAccessBubble.xib',
35 'app/nibs/ExtensionInstalledBubble.xib', 36 'app/nibs/ExtensionInstalledBubble.xib',
36 'app/nibs/ExtensionInstallPromptNoWarnings.xib', 37 'app/nibs/ExtensionInstallPromptNoWarnings.xib',
37 'app/nibs/ExtensionInstallPromptWebstoreData.xib', 38 'app/nibs/ExtensionInstallPromptWebstoreData.xib',
38 'app/nibs/ExtensionInstallPrompt.xib', 39 'app/nibs/ExtensionInstallPrompt.xib',
39 'app/nibs/FirstRunBubble.xib', 40 'app/nibs/FirstRunBubble.xib',
40 'app/nibs/FirstRunDialog.xib', 41 'app/nibs/FirstRunDialog.xib',
41 'app/nibs/HttpAuthLoginSheet.xib', 42 'app/nibs/HttpAuthLoginSheet.xib',
42 'app/nibs/HungRendererDialog.xib', 43 'app/nibs/HungRendererDialog.xib',
erikchen 2016/04/28 20:04:41 This nib shows up in mac_untranslated_xibs as well
Robert Sesek 2016/04/28 20:09:54 Yes, removed in the mac_untranslated_xibs.
43 'app/nibs/ImportProgressDialog.xib', 44 'app/nibs/ImportProgressDialog.xib',
44 'app/nibs/MainMenu.xib', 45 'app/nibs/MainMenu.xib',
45 'app/nibs/OneClickSigninBubble.xib', 46 'app/nibs/OneClickSigninBubble.xib',
46 'app/nibs/OneClickSigninDialog.xib', 47 'app/nibs/OneClickSigninDialog.xib',
47 'app/nibs/SaveAccessoryView.xib', 48 'app/nibs/SaveAccessoryView.xib',
48 'app/nibs/TaskManager.xib', 49 'app/nibs/TaskManager.xib',
49 'app/nibs/Toolbar.xib', 50 'app/nibs/Toolbar.xib',
50 ], # mac_translated_xibs 51 ], # mac_translated_xibs
51 'mac_untranslated_xibs': [ 52 'mac_untranslated_xibs': [
52 'app/nibs/BookmarkBarFolderWindow.xib', 53 'app/nibs/BookmarkBarFolderWindow.xib',
53 'app/nibs/DevicePermissionsPrompt.xib', 54 'app/nibs/DevicePermissionsPrompt.xib',
54 'app/nibs/FindBar.xib', 55 'app/nibs/FindBar.xib',
55 'app/nibs/GlobalErrorBubble.xib', 56 'app/nibs/GlobalErrorBubble.xib',
56 'app/nibs/HungRendererDialog.xib', 57 'app/nibs/HungRendererDialog.xib',
57 'app/nibs/InfoBar.xib', 58 'app/nibs/InfoBar.xib',
58 'app/nibs/Panel.xib', 59 'app/nibs/Panel.xib',
59 ], # mac_untranslated_xibs 60 ], # mac_untranslated_xibs
60 'mac_all_xibs': [ 61 'mac_all_xibs': [
61 '<@(mac_translated_xibs)', 62 '<@(mac_translated_xibs)',
62 '<@(mac_untranslated_xibs)', 63 '<@(mac_untranslated_xibs)',
63 ], # mac_all_xibs 64 ], # mac_all_xibs
64 }, # variables 65 }, # variables
65 } 66 }
OLDNEW
« no previous file with comments | « chrome/app/nibs/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698