naiveproxy/components/download/internal/test/BUILD.gn

45 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-02-02 13:49:39 +03:00
# 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.
# Test target for download internal tests to depend on.
source_set("test_support") {
visibility = [ "//components/download/internal:unit_tests" ]
testonly = true
sources = [
"black_hole_log_sink.cc",
"black_hole_log_sink.h",
"download_params_utils.cc",
"download_params_utils.h",
"entry_utils.cc",
"entry_utils.h",
"mock_controller.cc",
"mock_controller.h",
"mock_log_sink.cc",
"mock_log_sink.h",
"mock_model_client.cc",
"mock_model_client.h",
"noop_store.cc",
"noop_store.h",
"test_device_status_listener.cc",
"test_device_status_listener.h",
"test_download_driver.cc",
"test_download_driver.h",
"test_store.cc",
"test_store.h",
]
public_deps = [
"//base",
"//components/download/public",
"//net:test_support",
"//testing/gmock",
]
deps = [
"//components/download/internal",
]
}