From 01223eadb24c7057b9b21281976bf7daf815e30d Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Mon, 17 Sep 2012 21:08:30 +0000 Subject: [Mac] Move the lists of XIB files into a gypi file. This creates lists of XIB files that Chromium has. It also lays the groundwork for editing XIB files on Xcode 4.4 by creating a fake project for working in Xcode. BUG=149763 TEST=No changes in build output. TBR=mark@chromium.org Review URL: https://codereview.chromium.org/10918254 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157199 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/chrome_nibs.gypi | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 chrome/chrome_nibs.gypi (limited to 'chrome/chrome_nibs.gypi') diff --git a/chrome/chrome_nibs.gypi b/chrome/chrome_nibs.gypi new file mode 100644 index 0000000..de0e330 --- /dev/null +++ b/chrome/chrome_nibs.gypi @@ -0,0 +1,71 @@ +# Copyright (c) 2012 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +# This gypi file contains lists of XIB files that are used by Chromium. The +# lists are divided by those files that need to be run through the localizer +# tool and those that do not. A XIB should be listed in either one or the +# other, but not both. +{ + 'variables': { + 'mac_translated_xibs': [ + 'app/nibs/AvatarMenuItem.xib', + 'app/nibs/BookmarkAllTabs.xib', + 'app/nibs/BookmarkBar.xib', + 'app/nibs/BookmarkBubble.xib', + 'app/nibs/BookmarkEditor.xib', + 'app/nibs/BookmarkNameFolder.xib', + 'app/nibs/BrowserWindow.xib', + 'app/nibs/ChromeToMobileBubble.xib', + 'app/nibs/CollectedCookies.xib', + 'app/nibs/ContentBlockedCookies.xib', + 'app/nibs/ContentBlockedImages.xib', + 'app/nibs/ContentBlockedJavaScript.xib', + 'app/nibs/ContentBlockedMixedScript.xib', + 'app/nibs/ContentBlockedPlugins.xib', + 'app/nibs/ContentBlockedPopups.xib', + 'app/nibs/ContentBlockedGeolocation.xib', + 'app/nibs/ContentProtocolHandlers.xib', + 'app/nibs/CookieDetailsView.xib', + 'app/nibs/DownloadItem.xib', + 'app/nibs/DownloadShelf.xib', + 'app/nibs/EditSearchEngine.xib', + 'app/nibs/ExtensionInstallPrompt.xib', + 'app/nibs/ExtensionInstallPromptBundle.xib', + 'app/nibs/ExtensionInstallPromptInline.xib', + 'app/nibs/ExtensionInstallPromptNoWarnings.xib', + 'app/nibs/ExtensionInstalledBubble.xib', + 'app/nibs/FirstRunBubble.xib', + 'app/nibs/FirstRunDialog.xib', + 'app/nibs/FullscreenExitBubble.xib', + 'app/nibs/HttpAuthLoginSheet.xib', + 'app/nibs/HungRendererDialog.xib', + 'app/nibs/ImportProgressDialog.xib', + 'app/nibs/MainMenu.xib', + 'app/nibs/OneClickSigninBubble.xib', + 'app/nibs/SadTab.xib', + 'app/nibs/SaveAccessoryView.xib', + 'app/nibs/SpeechRecognitionBubble.xib', + 'app/nibs/TaskManager.xib', + 'app/nibs/Toolbar.xib', + 'app/nibs/WrenchMenu.xib', + ], # mac_translated_xibs + 'mac_untranslated_xibs': [ + 'app/nibs/AboutIPC.xib', + 'app/nibs/BookmarkBarFolderWindow.xib', + 'app/nibs/FindBar.xib', + 'app/nibs/GlobalErrorBubble.xib', + 'app/nibs/HungRendererDialog.xib', + 'app/nibs/InfoBar.xib', + 'app/nibs/InfoBarContainer.xib', + 'app/nibs/Notification.xib', + 'app/nibs/Panel.xib', + 'app/nibs/PreviewableContents.xib', + 'app/nibs/TabView.xib', + ], # mac_untranslated_xibs + 'mac_all_xibs': [ + '<@(mac_translated_xibs)', + '<@(mac_untranslated_xibs)', + ], # mac_all_xibs + }, # variables +} -- cgit v1.1