mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
43 lines
1.0 KiB
Plaintext
43 lines
1.0 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 = [
|
||
|
"app_source_url_recorder.cc",
|
||
|
"app_source_url_recorder.h",
|
||
|
"source_url_recorder.cc",
|
||
|
"source_url_recorder.h",
|
||
|
]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/crx_file",
|
||
|
"//content/public/browser",
|
||
|
"//services/metrics/public/cpp:metrics_cpp",
|
||
|
"//services/metrics/public/cpp:ukm_builders",
|
||
|
"//services/metrics/public/mojom",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
source_set("unit_tests") {
|
||
|
testonly = true
|
||
|
sources = [
|
||
|
"app_source_url_recorder_test.cc",
|
||
|
"source_url_recorder_test.cc",
|
||
|
]
|
||
|
deps = [
|
||
|
":content",
|
||
|
"//base",
|
||
|
"//base/test:test_support",
|
||
|
"//components/metrics",
|
||
|
"//components/metrics:test_support",
|
||
|
"//components/ukm",
|
||
|
"//components/ukm:test_support",
|
||
|
"//content/public/browser",
|
||
|
"//content/test:test_support",
|
||
|
"//testing/gtest",
|
||
|
"//url",
|
||
|
]
|
||
|
}
|