mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-28 16:26:10 +03:00
57 lines
1.6 KiB
Plaintext
57 lines
1.6 KiB
Plaintext
# Copyright 2015 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.
|
|
|
|
static_library("browser") {
|
|
sources = [
|
|
"content_lofi_decider.cc",
|
|
"content_lofi_decider.h",
|
|
"content_lofi_ui_service.cc",
|
|
"content_lofi_ui_service.h",
|
|
"content_resource_type_provider.cc",
|
|
"content_resource_type_provider.h",
|
|
"data_reduction_proxy_pingback_client_impl.cc",
|
|
"data_reduction_proxy_pingback_client_impl.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//components/crash/content/browser",
|
|
"//components/data_reduction_proxy/core/browser",
|
|
"//components/data_reduction_proxy/core/common",
|
|
"//components/data_use_measurement/core",
|
|
"//components/previews/core:core",
|
|
"//components/variations/net",
|
|
"//content/public/browser",
|
|
"//content/public/common",
|
|
"//net",
|
|
"//services/network/public/cpp",
|
|
]
|
|
}
|
|
|
|
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"content_lofi_decider_unittest.cc",
|
|
"content_lofi_ui_service_unittest.cc",
|
|
"content_resource_type_provider_unittest.cc",
|
|
"data_reduction_proxy_pingback_client_impl_unittest.cc",
|
|
]
|
|
|
|
deps = [
|
|
":browser",
|
|
"//base",
|
|
"//components/crash/content/browser",
|
|
"//components/data_reduction_proxy/core/browser:test_support",
|
|
"//components/data_reduction_proxy/core/common:test_support",
|
|
"//content/public/browser",
|
|
"//content/public/common",
|
|
"//content/test:test_support",
|
|
"//net:test_support",
|
|
"//services/network:test_support",
|
|
"//services/network/public/cpp",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
]
|
|
}
|