| # Copyright 2015 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| import("//ios/build/config.gni") |
| import("//testing/test.gni") |
| |
| group("all_tests") { |
| testonly = true |
| deps = [ ":ios_testing_unittests" ] |
| } |
| |
| source_set("verify_custom_webkit") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| sources = [ |
| "verify_custom_webkit.h", |
| "verify_custom_webkit.mm", |
| ] |
| deps = [ "//base" ] |
| } |
| |
| source_set("hardware_keyboarr_support") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| sources = [ |
| "hardware_keyboard_util.h", |
| "hardware_keyboard_util.mm", |
| ] |
| deps = [ "//base/test:test_support" ] |
| } |
| |
| source_set("block_swizzler") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| sources = [ |
| "scoped_block_swizzler.h", |
| "scoped_block_swizzler.mm", |
| "scoped_method_swizzler.h", |
| "scoped_method_swizzler.mm", |
| ] |
| deps = [ "//base" ] |
| } |
| |
| source_set("nserror_support") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| sources = [ |
| "nserror_util.h", |
| "nserror_util.mm", |
| ] |
| } |
| |
| source_set("embedded_test_server_support") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| |
| deps = [ "//net:test_support" ] |
| sources = [ |
| "embedded_test_server_handlers.cc", |
| "embedded_test_server_handlers.h", |
| ] |
| } |
| |
| source_set("ocmock_support") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| testonly = true |
| |
| deps = [ "//base" ] |
| |
| public_deps = [ "//third_party/ocmock" ] |
| |
| sources = [ |
| "ocmock_complex_type_helper.h", |
| "ocmock_complex_type_helper.mm", |
| ] |
| } |
| |
| test("ios_testing_unittests") { |
| configs += [ "//build/config/compiler:enable_arc" ] |
| deps = [ |
| ":block_swizzler", |
| ":ocmock_support", |
| "//base/test:run_all_unittests", |
| "//base/test:test_support", |
| "//testing/gmock", |
| "//testing/gtest", |
| "//third_party/ocmock", |
| ] |
| |
| sources = [ |
| "ocmock_complex_type_helper_unittest.mm", |
| "scoped_block_swizzler_unittest.mm", |
| "scoped_method_swizzler_unittest.mm", |
| ] |
| |
| assert_no_deps = ios_assert_no_deps |
| } |
| |
| bundle_data("http_server_bundle_data") { |
| testonly = true |
| |
| sources = [ |
| "data/http_server_files/autofill_smoke_test.html", |
| "data/http_server_files/browsing_prevent_default_test_page.html", |
| "data/http_server_files/chromium_logo.png", |
| "data/http_server_files/chromium_logo_page.html", |
| "data/http_server_files/complex_document.pdf", |
| "data/http_server_files/console.html", |
| "data/http_server_files/console_with_iframe.html", |
| "data/http_server_files/context_menu.html", |
| "data/http_server_files/destination.html", |
| "data/http_server_files/fullscreen.html", |
| "data/http_server_files/generic.pkpass", |
| "data/http_server_files/history.html", |
| "data/http_server_files/history.js", |
| "data/http_server_files/history_go.html", |
| "data/http_server_files/history_go.js", |
| "data/http_server_files/iframe_form.html", |
| "data/http_server_files/iframe_host.html", |
| "data/http_server_files/links.html", |
| "data/http_server_files/memory_usage.html", |
| "data/http_server_files/multi_field_form.html", |
| "data/http_server_files/onload_replacestate_reload.html", |
| "data/http_server_files/onload_replacestate_reload.js", |
| "data/http_server_files/opensearch.xml", |
| "data/http_server_files/pony.html", |
| "data/http_server_files/profile_form.html", |
| "data/http_server_files/readonly_form.html", |
| "data/http_server_files/redchair.usdz", |
| "data/http_server_files/redirect_refresh.html", |
| "data/http_server_files/single_page_wide.pdf", |
| "data/http_server_files/state_operations.html", |
| "data/http_server_files/state_operations.js", |
| "data/http_server_files/tall_page.html", |
| "data/http_server_files/testpage.pdf", |
| "data/http_server_files/two_pages.pdf", |
| "data/http_server_files/user_agent_test_page.html", |
| "data/http_server_files/username_password_field_form.html", |
| "data/http_server_files/window_close.html", |
| "data/http_server_files/window_location.html", |
| "data/http_server_files/window_location.js", |
| "data/http_server_files/window_open.html", |
| "data/http_server_files/window_proxy.html", |
| ] |
| outputs = [ "{{bundle_resources_dir}}/" + |
| "{{source_root_relative_dir}}/{{source_file_part}}" ] |
| } |