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("//ios/build/config.gni") | 5 import("//ios/build/config.gni") |
6 import("//ios/third_party/earl_grey/ios_eg_test.gni") | 6 import("//ios/third_party/earl_grey/ios_eg_test.gni") |
7 | 7 |
8 ios_eg_test("ios_web_shell_test") { | 8 ios_eg_test("ios_web_shell_test") { |
9 sources = [ | 9 sources = [ |
10 "context_menu_egtest.mm", | 10 "context_menu_egtest.mm", |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "earl_grey/shell_earl_grey.h", | 74 "earl_grey/shell_earl_grey.h", |
75 "earl_grey/shell_earl_grey.mm", | 75 "earl_grey/shell_earl_grey.mm", |
76 "earl_grey/shell_matchers.h", | 76 "earl_grey/shell_matchers.h", |
77 "earl_grey/shell_matchers.mm", | 77 "earl_grey/shell_matchers.mm", |
78 ] | 78 ] |
79 | 79 |
80 configs += [ "//build/config/compiler:enable_arc" ] | 80 configs += [ "//build/config/compiler:enable_arc" ] |
81 } | 81 } |
82 | 82 |
83 bundle_data("bundle") { | 83 bundle_data("bundle") { |
84 visibility = [ ":ios_web_shell_test_host" ] | 84 visibility = [ |
| 85 ":ios_web_shell_test", |
| 86 ":ios_web_shell_test_host", |
| 87 ] |
85 sources = [ | 88 sources = [ |
86 "http_server_files/basic_navigation_test.html", | 89 "http_server_files/basic_navigation_test.html", |
87 "http_server_files/tall_page.html", | 90 "http_server_files/tall_page.html", |
88 "http_server_files/testpage.pdf", | 91 "http_server_files/testpage.pdf", |
89 ] | 92 ] |
90 outputs = [ | 93 outputs = [ |
91 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + | 94 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + |
92 "{{source_file_part}}", | 95 "{{source_file_part}}", |
93 ] | 96 ] |
94 } | 97 } |
OLD | NEW |