| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("ios_test_support") { | 8 source_set("ios_test_support") { |
| 9 configs += [ "//build/config/compiler:enable_arc" ] | 9 configs += [ "//build/config/compiler:enable_arc" ] |
| 10 testonly = true | 10 testonly = true |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 sources = [ | 61 sources = [ |
| 62 "data/http_server_files/autofill_smoke_test.html", | 62 "data/http_server_files/autofill_smoke_test.html", |
| 63 "data/http_server_files/browsing_prevent_default_test_page.html", | 63 "data/http_server_files/browsing_prevent_default_test_page.html", |
| 64 "data/http_server_files/chromium_logo.png", | 64 "data/http_server_files/chromium_logo.png", |
| 65 "data/http_server_files/chromium_logo_page.html", | 65 "data/http_server_files/chromium_logo_page.html", |
| 66 "data/http_server_files/destination.html", | 66 "data/http_server_files/destination.html", |
| 67 "data/http_server_files/fullscreen.html", | 67 "data/http_server_files/fullscreen.html", |
| 68 "data/http_server_files/history.html", | 68 "data/http_server_files/history.html", |
| 69 "data/http_server_files/history.js", | 69 "data/http_server_files/history.js", |
| 70 "data/http_server_files/history_go.html", |
| 71 "data/http_server_files/history_go.js", |
| 70 "data/http_server_files/memory_usage.html", | 72 "data/http_server_files/memory_usage.html", |
| 71 "data/http_server_files/multi_field_form.html", | 73 "data/http_server_files/multi_field_form.html", |
| 72 "data/http_server_files/pony.html", | 74 "data/http_server_files/pony.html", |
| 73 "data/http_server_files/redirect_refresh.html", | 75 "data/http_server_files/redirect_refresh.html", |
| 74 "data/http_server_files/request_desktop_test_page.html", | 76 "data/http_server_files/request_desktop_test_page.html", |
| 75 "data/http_server_files/single_page_wide.pdf", | 77 "data/http_server_files/single_page_wide.pdf", |
| 76 "data/http_server_files/testpage.pdf", | 78 "data/http_server_files/testpage.pdf", |
| 77 "data/http_server_files/two_pages.pdf", | 79 "data/http_server_files/two_pages.pdf", |
| 78 "data/http_server_files/window_close.html", | 80 "data/http_server_files/window_close.html", |
| 79 "data/http_server_files/window_open.html", | 81 "data/http_server_files/window_open.html", |
| 80 "data/http_server_files/window_proxy.html", | 82 "data/http_server_files/window_proxy.html", |
| 81 ] | 83 ] |
| 82 outputs = [ | 84 outputs = [ |
| 83 "{{bundle_resources_dir}}/" + | 85 "{{bundle_resources_dir}}/" + |
| 84 "{{source_root_relative_dir}}/{{source_file_part}}", | 86 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 85 ] | 87 ] |
| 86 } | 88 } |
| OLD | NEW |