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

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: remove content/ dependency 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
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.h",
59 "net/wifi_access_point_info_provider.cc",
Alexei Svitkine (slow) 2014/09/10 14:50:47 Shouldn't the wifi_access_point_info_provider_chro
gunsch 2014/09/10 16:18:58 Done.
56 ] 60 ]
57 61
58 deps = [ 62 deps = [
59 ":metrics", 63 ":metrics",
60 "//net", 64 "//net",
61 ] 65 ]
62 66
63 forward_dependent_configs_from = [ ":metrics" ] 67 forward_dependent_configs_from = [ ":metrics" ]
64 } 68 }
65 69
66 # GYP version: components/metrics.gypi:metrics_test_support 70 # GYP version: components/metrics.gypi:metrics_test_support
67 static_library("test_support") { 71 static_library("test_support") {
68 sources = [ 72 sources = [
69 "test_metrics_service_client.cc", 73 "test_metrics_service_client.cc",
70 "test_metrics_service_client.h", 74 "test_metrics_service_client.h",
71 ] 75 ]
72 76
73 deps = [ 77 deps = [
74 ":metrics", 78 ":metrics",
75 ] 79 ]
76 80
77 forward_dependent_configs_from = [ ":metrics" ] 81 forward_dependent_configs_from = [ ":metrics" ]
78 } 82 }
79 83
80 # TODO(GYP): metrics_chromeos 84 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698