mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 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
|
|
|
|
sources = [
|
|
"fake_contained_presenter.h",
|
|
"fake_contained_presenter.mm",
|
|
"fake_document_interaction_controller.h",
|
|
"fake_document_interaction_controller.mm",
|
|
"fake_download_manager_consumer.h",
|
|
"fake_download_manager_consumer.mm",
|
|
"fake_download_manager_tab_helper_delegate.h",
|
|
"fake_download_manager_tab_helper_delegate.mm",
|
|
"fake_pass_kit_tab_helper_delegate.h",
|
|
"fake_pass_kit_tab_helper_delegate.mm",
|
|
"fake_store_kit_launcher.h",
|
|
"fake_store_kit_launcher.mm",
|
|
"fake_ui_view_controller.h",
|
|
"fake_ui_view_controller.mm",
|
|
"fake_url_loader.h",
|
|
"fake_url_loader.mm",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//ios/chrome/browser/download",
|
|
"//ios/chrome/browser/store_kit",
|
|
"//ios/chrome/browser/ui",
|
|
"//ios/chrome/browser/ui/commands",
|
|
"//ios/chrome/browser/ui/download",
|
|
"//ios/chrome/browser/ui/presenters",
|
|
"//ios/web/public",
|
|
"//ios/web/public/download",
|
|
]
|
|
|
|
libs = [ "Foundation.framework" ]
|
|
}
|