| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/mac/rules.gni") | 5 import("//build/config/mac/rules.gni") |
| 6 | 6 |
| 7 assert(is_mac) | 7 assert(is_mac) |
| 8 | 8 |
| 9 translated_xibs = [ | 9 translated_xibs = [ |
| 10 "AppMenu.xib", | 10 "AppMenu.xib", |
| 11 "BookmarkAllTabs.xib", | 11 "BookmarkAllTabs.xib", |
| 12 "BookmarkBubble.xib", | 12 "BookmarkBubble.xib", |
| 13 "BookmarkEditor.xib", | 13 "BookmarkEditor.xib", |
| 14 "BookmarkNameFolder.xib", | 14 "BookmarkNameFolder.xib", |
| 15 "CollectedCookies.xib", | 15 "CollectedCookies.xib", |
| 16 "ContentBlockedCookies.xib", | 16 "ContentBlockedCookies.xib", |
| 17 "ContentBlockedDownloads.xib", | 17 "ContentBlockedDownloads.xib", |
| 18 "ContentBlockedGeolocation.xib", | 18 "ContentBlockedGeolocation.xib", |
| 19 "ContentBlockedMIDISysEx.xib", | 19 "ContentBlockedMIDISysEx.xib", |
| 20 "ContentBlockedMedia.xib", | 20 "ContentBlockedMedia.xib", |
| 21 "ContentBlockedMixedScript.xib", | 21 "ContentBlockedMixedScript.xib", |
| 22 "ContentBlockedPlugins.xib", | 22 "ContentBlockedPlugins.xib", |
| 23 "ContentBlockedPopups.xib", | 23 "ContentBlockedPopups.xib", |
| 24 "ContentBlockedSimple.xib", | 24 "ContentBlockedSimple.xib", |
| 25 "ContentProtocolHandlers.xib", | 25 "ContentProtocolHandlers.xib", |
| 26 "ContentSubresourceFilter.xib", | |
| 27 "CookieDetailsView.xib", | 26 "CookieDetailsView.xib", |
| 28 "DownloadItem.xib", | 27 "DownloadItem.xib", |
| 29 "DownloadShelf.xib", | 28 "DownloadShelf.xib", |
| 30 "ExtensionInstallPrompt.xib", | 29 "ExtensionInstallPrompt.xib", |
| 31 "ExtensionInstallPromptNoWarnings.xib", | 30 "ExtensionInstallPromptNoWarnings.xib", |
| 32 "ExtensionInstallPromptWebstoreData.xib", | 31 "ExtensionInstallPromptWebstoreData.xib", |
| 33 "ExtensionInstalledBubble.xib", | 32 "ExtensionInstalledBubble.xib", |
| 34 "FirstRunBubble.xib", | 33 "FirstRunBubble.xib", |
| 35 "FirstRunDialog.xib", | 34 "FirstRunDialog.xib", |
| 36 "HttpAuthLoginSheet.xib", | 35 "HttpAuthLoginSheet.xib", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 67 rebase_path(table_path, root_build_dir), | 66 rebase_path(table_path, root_build_dir), |
| 68 ] | 67 ] |
| 69 if (!use_system_xcode) { | 68 if (!use_system_xcode) { |
| 70 args += [ | 69 args += [ |
| 71 "--developer_dir", | 70 "--developer_dir", |
| 72 hermetic_xcode_path, | 71 hermetic_xcode_path, |
| 73 ] | 72 ] |
| 74 } | 73 } |
| 75 args += rebase_path(translated_xibs, root_build_dir) | 74 args += rebase_path(translated_xibs, root_build_dir) |
| 76 } | 75 } |
| OLD | NEW |