mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
50 lines
1.2 KiB
Plaintext
50 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.
|
||
|
|
||
|
static_library("content") {
|
||
|
sources = [
|
||
|
"previews_content_util.cc",
|
||
|
"previews_content_util.h",
|
||
|
"previews_io_data.cc",
|
||
|
"previews_io_data.h",
|
||
|
"previews_optimization_guide.cc",
|
||
|
"previews_optimization_guide.h",
|
||
|
"previews_ui_service.cc",
|
||
|
"previews_ui_service.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/optimization_guide",
|
||
|
"//components/optimization_guide/proto:optimization_guide_proto",
|
||
|
"//components/previews/core",
|
||
|
"//components/url_matcher",
|
||
|
"//components/variations",
|
||
|
"//content/public/common",
|
||
|
"//net",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"previews_content_util_unittest.cc",
|
||
|
"previews_io_data_unittest.cc",
|
||
|
"previews_optimization_guide_unittest.cc",
|
||
|
"previews_ui_service_unittest.cc",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":content",
|
||
|
"//base",
|
||
|
"//components/optimization_guide",
|
||
|
"//components/optimization_guide/proto:optimization_guide_proto",
|
||
|
"//components/previews/core",
|
||
|
"//components/variations",
|
||
|
"//content/public/common",
|
||
|
"//net:test_support",
|
||
|
"//testing/gtest",
|
||
|
]
|
||
|
}
|