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