| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 'OTHER_LDFLAGS': [ | 56 'OTHER_LDFLAGS': [ |
| 57 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', | 57 '-Xlinker', '-rpath', '-Xlinker', '@executable_path/Frameworks', |
| 58 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' | 58 '-Xlinker', '-rpath', '-Xlinker', '@loader_path/Frameworks' |
| 59 ] | 59 ] |
| 60 }, | 60 }, |
| 61 'dependencies': [ | 61 'dependencies': [ |
| 62 'ios_web_shell_earl_grey_test_support', | 62 'ios_web_shell_earl_grey_test_support', |
| 63 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', | 63 '<(DEPTH)/ios/third_party/earl_grey/earl_grey.gyp:EarlGrey', |
| 64 ], | 64 ], |
| 65 'sources': [ | 65 'sources': [ |
| 66 'shell/test/web_shell_navigation_egtest.mm', | 66 'shell/test/navigation_egtest.mm', |
| 67 'shell/test/web_shell_page_state_egtest.mm', | 67 'shell/test/page_state_egtest.mm', |
| 68 ], | 68 ], |
| 69 'actions': [{ | 69 'actions': [{ |
| 70 'action_name': 'copy_test_data', | 70 'action_name': 'copy_test_data', |
| 71 'variables': { | 71 'variables': { |
| 72 'test_data_files': [ | 72 'test_data_files': [ |
| 73 '../../ios/web/shell/test/http_server_files', | 73 '../../ios/web/shell/test/http_server_files', |
| 74 ], | 74 ], |
| 75 # Files are copied to .app/<test_data_prefix>/<test_data_files>. | 75 # Files are copied to .app/<test_data_prefix>/<test_data_files>. |
| 76 # Since the test_data_files are two levels up, the test_data_prefix | 76 # Since the test_data_files are two levels up, the test_data_prefix |
| 77 # needs to be two levels deep so the files end up in the .app bundle | 77 # needs to be two levels deep so the files end up in the .app bundle |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 'shell/test/app/web_view_interaction_test_util.h', | 120 'shell/test/app/web_view_interaction_test_util.h', |
| 121 'shell/test/app/web_view_interaction_test_util.mm', | 121 'shell/test/app/web_view_interaction_test_util.mm', |
| 122 'shell/test/earl_grey/shell_base_test_case.h', | 122 'shell/test/earl_grey/shell_base_test_case.h', |
| 123 'shell/test/earl_grey/shell_base_test_case.mm', | 123 'shell/test/earl_grey/shell_base_test_case.mm', |
| 124 'shell/test/earl_grey/shell_matchers.h', | 124 'shell/test/earl_grey/shell_matchers.h', |
| 125 'shell/test/earl_grey/shell_matchers.mm', | 125 'shell/test/earl_grey/shell_matchers.mm', |
| 126 ], | 126 ], |
| 127 }, | 127 }, |
| 128 ], | 128 ], |
| 129 } | 129 } |
| OLD | NEW |