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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 'OTHER_LDFLAGS': [ | 54 'OTHER_LDFLAGS': [ |
55 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', | 55 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', |
56 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' | 56 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' |
57 ] | 57 ] |
58 }, | 58 }, |
59 'dependencies': [ | 59 'dependencies': [ |
60 'ios_web_shell_earl_grey_test_support', | 60 'ios_web_shell_earl_grey_test_support', |
61 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', | 61 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', |
62 ], | 62 ], |
63 'sources': [ | 63 'sources': [ |
64 'shell/test/meta_tags_egtest.mm', | |
baxley
2016/07/22 15:53:26
Can you add this to ios/web/shell/test/BUILD.gn (t
Eugene But (OOO till 7-30)
2016/07/22 18:29:37
Done.
| |
64 'shell/test/navigation_egtest.mm', | 65 'shell/test/navigation_egtest.mm', |
65 'shell/test/page_state_egtest.mm', | 66 'shell/test/page_state_egtest.mm', |
66 ], | 67 ], |
67 'actions': [{ | 68 'actions': [{ |
68 'action_name': 'copy_test_data', | 69 'action_name': 'copy_test_data', |
69 'variables': { | 70 'variables': { |
70 'test_data_files': [ | 71 'test_data_files': [ |
71 '../../ios/web/shell/test/http_server_files', | 72 '../../ios/web/shell/test/http_server_files', |
72 ], | 73 ], |
73 # Files are copied to .app/<test_data_prefix>/<test_data_files>. | 74 # Files are copied to .app/<test_data_prefix>/<test_data_files>. |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
117 'shell/test/app/web_view_interaction_test_util.h', | 118 'shell/test/app/web_view_interaction_test_util.h', |
118 'shell/test/app/web_view_interaction_test_util.mm', | 119 'shell/test/app/web_view_interaction_test_util.mm', |
119 'shell/test/earl_grey/shell_base_test_case.h', | 120 'shell/test/earl_grey/shell_base_test_case.h', |
120 'shell/test/earl_grey/shell_base_test_case.mm', | 121 'shell/test/earl_grey/shell_base_test_case.mm', |
121 'shell/test/earl_grey/shell_matchers.h', | 122 'shell/test/earl_grey/shell_matchers.h', |
122 'shell/test/earl_grey/shell_matchers.mm', | 123 'shell/test/earl_grey/shell_matchers.mm', |
123 ], | 124 ], |
124 }, | 125 }, |
125 ], | 126 ], |
126 } | 127 } |
OLD | NEW |