Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: ios/web/shell/test/BUILD.gn

Issue 2190153002: [ios] Implemented redirect EG tests for web shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@http_server_util
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "meta_tags_egtest.mm", 10 "meta_tags_egtest.mm",
11 "navigation_egtest.mm", 11 "navigation_egtest.mm",
12 "page_state_egtest.mm", 12 "page_state_egtest.mm",
13 "pdf_egtest.mm", 13 "pdf_egtest.mm",
14 "plugin_placeholder_egtest.mm", 14 "plugin_placeholder_egtest.mm",
15 "redirect_egtest.mm",
15 ] 16 ]
16 17
17 deps = [ 18 deps = [
18 "//base", 19 "//base",
19 "//base/test:test_support", 20 "//base/test:test_support",
20 "//ios/testing/earl_grey:earl_grey_support", 21 "//ios/testing/earl_grey:earl_grey_support",
21 "//ios/web:earl_grey_test_support", 22 "//ios/web:earl_grey_test_support",
22 "//ios/web:test_support", 23 "//ios/web:test_support",
23 "//ios/web/shell", 24 "//ios/web/shell",
24 "//ios/web/shell/test:earl_grey_test_support", 25 "//ios/web/shell/test:earl_grey_test_support",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 sources = [ 71 sources = [
71 "http_server_files/basic_navigation_test.html", 72 "http_server_files/basic_navigation_test.html",
72 "http_server_files/tall_page.html", 73 "http_server_files/tall_page.html",
73 "http_server_files/testpage.pdf", 74 "http_server_files/testpage.pdf",
74 ] 75 ]
75 outputs = [ 76 outputs = [
76 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" + 77 "{{bundle_resources_dir}}/{{source_root_relative_dir}}/" +
77 "{{source_file_part}}", 78 "{{source_file_part}}",
78 ] 79 ]
79 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698