mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
35 lines
991 B
Plaintext
35 lines
991 B
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/navigation:core",
|
||
|
"//ios/web/public:public",
|
||
|
"//ios/web/web_state/ui:crw_web_view_navigation_proxy",
|
||
|
"//testing/gmock",
|
||
|
"//third_party/ocmock:ocmock",
|
||
|
]
|
||
|
|
||
|
sources = [
|
||
|
"crw_fake_back_forward_list.h",
|
||
|
"crw_fake_back_forward_list.mm",
|
||
|
"crw_fake_nsurl_session_task.h",
|
||
|
"crw_fake_nsurl_session_task.mm",
|
||
|
"crw_fake_wk_navigation_action.h",
|
||
|
"crw_fake_wk_navigation_action.mm",
|
||
|
"crw_fake_wk_navigation_response.h",
|
||
|
"crw_fake_wk_navigation_response.mm",
|
||
|
"fake_navigation_manager_delegate.h",
|
||
|
"fake_navigation_manager_delegate.mm",
|
||
|
"mock_interstitial_delegate.h",
|
||
|
"mock_interstitial_delegate.mm",
|
||
|
]
|
||
|
|
||
|
libs = [ "WebKit.framework" ]
|
||
|
}
|