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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'includes': [ | 44 'includes': [ |
45 'ios_web_shell_exe.gypi', | 45 'ios_web_shell_exe.gypi', |
46 ], | 46 ], |
47 'link_settings': { | 47 'link_settings': { |
48 'libraries': [ | 48 'libraries': [ |
49 'XCTest.framework', | 49 'XCTest.framework', |
50 ], | 50 ], |
51 }, | 51 }, |
52 'xcode_settings': { | 52 'xcode_settings': { |
53 'INFOPLIST_FILE': 'shell/test/Host-Info.plist', | 53 'INFOPLIST_FILE': 'shell/test/Host-Info.plist', |
| 54 'OTHER_LDFLAGS': [ |
| 55 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', |
| 56 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' |
| 57 ] |
54 }, | 58 }, |
55 'dependencies': [ | 59 'dependencies': [ |
56 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', | 60 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', |
57 'ios_web.gyp:ios_web_test_support', | 61 'ios_web.gyp:ios_web_test_support', |
58 ], | 62 ], |
59 'sources': [ | 63 'sources': [ |
60 'public/test/http_server_util.h', | 64 'public/test/http_server_util.h', |
61 'public/test/http_server_util.mm', | 65 'public/test/http_server_util.mm', |
62 'shell/test/navigation_test_util.h', | 66 'shell/test/navigation_test_util.h', |
63 'shell/test/navigation_test_util.mm', | 67 'shell/test/navigation_test_util.mm', |
(...skipping 19 matching lines...) Expand all Loading... |
83 'action': [ | 87 'action': [ |
84 'ditto', | 88 'ditto', |
85 '${BUILT_PRODUCTS_DIR}/EarlGrey.framework', | 89 '${BUILT_PRODUCTS_DIR}/EarlGrey.framework', |
86 '${BUILT_PRODUCTS_DIR}/<(_target_name).app/Frameworks/EarlGrey.frame
work', | 90 '${BUILT_PRODUCTS_DIR}/<(_target_name).app/Frameworks/EarlGrey.frame
work', |
87 ], | 91 ], |
88 }, | 92 }, |
89 ], | 93 ], |
90 }, | 94 }, |
91 ], | 95 ], |
92 } | 96 } |
OLD | NEW |