| 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 "BookmarkBar.xib", | |
| 13 "BookmarkBubble.xib", | 12 "BookmarkBubble.xib", |
| 14 "BookmarkEditor.xib", | 13 "BookmarkEditor.xib", |
| 15 "BookmarkNameFolder.xib", | 14 "BookmarkNameFolder.xib", |
| 16 "CollectedCookies.xib", | 15 "CollectedCookies.xib", |
| 17 "ContentBlockedCookies.xib", | 16 "ContentBlockedCookies.xib", |
| 18 "ContentBlockedDownloads.xib", | 17 "ContentBlockedDownloads.xib", |
| 19 "ContentBlockedGeolocation.xib", | 18 "ContentBlockedGeolocation.xib", |
| 20 "ContentBlockedMIDISysEx.xib", | 19 "ContentBlockedMIDISysEx.xib", |
| 21 "ContentBlockedMedia.xib", | 20 "ContentBlockedMedia.xib", |
| 22 "ContentBlockedMixedScript.xib", | 21 "ContentBlockedMixedScript.xib", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 rebase_path(table_path, root_build_dir), | 67 rebase_path(table_path, root_build_dir), |
| 69 ] | 68 ] |
| 70 if (!use_system_xcode) { | 69 if (!use_system_xcode) { |
| 71 args += [ | 70 args += [ |
| 72 "--developer_dir", | 71 "--developer_dir", |
| 73 hermetic_xcode_path, | 72 hermetic_xcode_path, |
| 74 ] | 73 ] |
| 75 } | 74 } |
| 76 args += rebase_path(translated_xibs, root_build_dir) | 75 args += rebase_path(translated_xibs, root_build_dir) |
| 77 } | 76 } |
| OLD | NEW |