mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
63 lines
1.8 KiB
Plaintext
63 lines
1.8 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("fakes") {
|
||
|
configs += [ "//build/config/compiler:enable_arc" ]
|
||
|
testonly = true
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//ios/web/public/download",
|
||
|
"//ios/web/test:test_constants",
|
||
|
"//ios/web/web_state:navigation_context",
|
||
|
"//ios/web/web_state/ui:crw_web_view_navigation_proxy",
|
||
|
"//ios/web/web_state/ui:web_view_js_utils",
|
||
|
"//ios/web/webui:webui",
|
||
|
"//net:test_support",
|
||
|
"//testing/gtest",
|
||
|
"//ui/base",
|
||
|
]
|
||
|
|
||
|
public_deps = [
|
||
|
"//ios/web/public",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"crw_fake_web_state_policy_decider.h",
|
||
|
"crw_fake_web_state_policy_decider.mm",
|
||
|
"crw_test_js_injection_receiver.h",
|
||
|
"crw_test_js_injection_receiver.mm",
|
||
|
"crw_test_web_state_observer.h",
|
||
|
"crw_test_web_state_observer.mm",
|
||
|
"fake_download_controller_delegate.h",
|
||
|
"fake_download_controller_delegate.mm",
|
||
|
"fake_download_task.h",
|
||
|
"fake_download_task.mm",
|
||
|
"fake_navigation_context.h",
|
||
|
"fake_navigation_context.mm",
|
||
|
"test_browser_state.cc",
|
||
|
"test_browser_state.h",
|
||
|
"test_java_script_dialog_presenter.h",
|
||
|
"test_java_script_dialog_presenter.mm",
|
||
|
"test_native_content.h",
|
||
|
"test_native_content.mm",
|
||
|
"test_native_content_provider.h",
|
||
|
"test_native_content_provider.mm",
|
||
|
"test_navigation_manager.h",
|
||
|
"test_navigation_manager.mm",
|
||
|
"test_web_client.h",
|
||
|
"test_web_client.mm",
|
||
|
"test_web_state.h",
|
||
|
"test_web_state.mm",
|
||
|
"test_web_state_delegate.h",
|
||
|
"test_web_state_delegate.mm",
|
||
|
"test_web_state_observer.h",
|
||
|
"test_web_state_observer.mm",
|
||
|
"test_web_state_observer_util.h",
|
||
|
"test_web_state_observer_util.mm",
|
||
|
"test_web_view_content_view.h",
|
||
|
"test_web_view_content_view.mm",
|
||
|
]
|
||
|
}
|