mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
47 lines
941 B
Plaintext
47 lines
941 B
Plaintext
|
# Copyright 2013 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.
|
||
|
|
||
|
# We have 2 separate targets because //components/html_viewer requires :lib,
|
||
|
# but has symbols that conflict with mojo symbols that :message_filter_lib
|
||
|
# indirectly depends on.
|
||
|
|
||
|
group("browser") {
|
||
|
testonly = true
|
||
|
|
||
|
deps = [
|
||
|
":host",
|
||
|
":lib",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
static_library("lib") {
|
||
|
sources = [
|
||
|
"pref_names.cc",
|
||
|
"pref_names.h",
|
||
|
"startup_metric_utils.cc",
|
||
|
"startup_metric_utils.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//components/metrics:metrics",
|
||
|
"//components/prefs",
|
||
|
"//components/version_info",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
static_library("host") {
|
||
|
sources = [
|
||
|
"startup_metric_host_impl.cc",
|
||
|
"startup_metric_host_impl.h",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
":lib",
|
||
|
"//base",
|
||
|
"//components/startup_metric_utils/common:interfaces",
|
||
|
"//content/public/browser",
|
||
|
]
|
||
|
}
|