Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(427)

Side by Side Diff: components/metrics/BUILD.gn

Issue 558873002: Moves NetworkMetricsProvider to //components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed asvitkine comments Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/net/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # GYP version: components/metrics.gypi:metrics 5 # GYP version: components/metrics.gypi:metrics
6 source_set("metrics") { 6 source_set("metrics") {
7 sources = [ 7 sources = [
8 "client_info.cc", 8 "client_info.cc",
9 "client_info.h", 9 "client_info.h",
10 "cloned_install_detector.cc", 10 "cloned_install_detector.cc",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "//components/variations", 44 "//components/variations",
45 "//third_party/zlib", 45 "//third_party/zlib",
46 ] 46 ]
47 47
48 forward_dependent_configs_from = [ "//components/metrics/proto" ] 48 forward_dependent_configs_from = [ "//components/metrics/proto" ]
49 } 49 }
50 50
51 # GYP version: components/metrics.gypi:metrics_net 51 # GYP version: components/metrics.gypi:metrics_net
52 static_library("net") { 52 static_library("net") {
53 sources = [ 53 sources = [
54 "net/network_metrics_provider.cc",
55 "net/network_metrics_provider.h",
54 "net/net_metrics_log_uploader.cc", 56 "net/net_metrics_log_uploader.cc",
55 "net/net_metrics_log_uploader.h", 57 "net/net_metrics_log_uploader.h",
58 "net/wifi_access_point_info_provider.cc",
59 "net/wifi_access_point_info_provider.h",
60 "net/wifi_access_point_info_provider_chromeos.cc",
61 "net/wifi_access_point_info_provider_chromeos.h",
56 ] 62 ]
57 63
58 deps = [ 64 deps = [
59 ":metrics", 65 ":metrics",
60 "//net", 66 "//net",
61 ] 67 ]
62 68
63 forward_dependent_configs_from = [ ":metrics" ] 69 forward_dependent_configs_from = [ ":metrics" ]
64 } 70 }
65 71
66 # GYP version: components/metrics.gypi:metrics_test_support 72 # GYP version: components/metrics.gypi:metrics_test_support
67 static_library("test_support") { 73 static_library("test_support") {
68 sources = [ 74 sources = [
69 "test_metrics_service_client.cc", 75 "test_metrics_service_client.cc",
70 "test_metrics_service_client.h", 76 "test_metrics_service_client.h",
71 ] 77 ]
72 78
73 deps = [ 79 deps = [
74 ":metrics", 80 ":metrics",
75 ] 81 ]
76 82
77 forward_dependent_configs_from = [ ":metrics" ] 83 forward_dependent_configs_from = [ ":metrics" ]
78 } 84 }
79 85
80 # TODO(GYP): metrics_chromeos 86 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/net/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698