mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
|
# Copyright 2017 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.
|
||
|
|
||
|
source_set("test") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
|
||
|
public_deps = [
|
||
|
"//ios/web/public/test/fakes",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//ios/web:web",
|
||
|
"//ios/web/interstitials",
|
||
|
"//ios/web/navigation:core",
|
||
|
"//ios/web/public/test/http_server",
|
||
|
"//ios/web/test:test_support",
|
||
|
"//ios/web/web_state:error_translation_util",
|
||
|
"//ios/web/web_state/js:script_util",
|
||
|
"//testing/gtest",
|
||
|
"//ui/base",
|
||
|
"//url",
|
||
|
]
|
||
|
|
||
|
allow_circular_includes_from = [ "//ios/web/test:test_support" ]
|
||
|
|
||
|
sources = [
|
||
|
"element_selector.h",
|
||
|
"element_selector.mm",
|
||
|
"error_test_util.h",
|
||
|
"error_test_util.mm",
|
||
|
"js_test_util.h",
|
||
|
"js_test_util.mm",
|
||
|
"native_controller_test_util.h",
|
||
|
"native_controller_test_util.mm",
|
||
|
"navigation_test_util.h",
|
||
|
"navigation_test_util.mm",
|
||
|
"scoped_testing_web_client.h",
|
||
|
"scoped_testing_web_client.mm",
|
||
|
"test_redirect_observer.h",
|
||
|
"test_redirect_observer.mm",
|
||
|
"test_web_thread.h",
|
||
|
"test_web_thread_bundle.h",
|
||
|
"url_test_util.h",
|
||
|
"web_js_test.h",
|
||
|
"web_test.h",
|
||
|
"web_test.mm",
|
||
|
"web_test_suite.h",
|
||
|
"web_test_with_web_state.h",
|
||
|
"web_test_with_web_state.mm",
|
||
|
"web_view_content_test_util.h",
|
||
|
"web_view_content_test_util.mm",
|
||
|
"web_view_interaction_test_util.h",
|
||
|
"web_view_interaction_test_util.mm",
|
||
|
]
|
||
|
}
|