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

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

Issue 523273003: Moves GPUMetricsProvider to //components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/gpu/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 "clean_exit_beacon.cc", 8 "clean_exit_beacon.cc",
9 "clean_exit_beacon.h", 9 "clean_exit_beacon.h",
10 "client_info.cc", 10 "client_info.cc",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 deps = [ 45 deps = [
46 "//base", 46 "//base",
47 "//components/metrics/proto", 47 "//components/metrics/proto",
48 "//components/variations", 48 "//components/variations",
49 "//third_party/zlib", 49 "//third_party/zlib",
50 ] 50 ]
51 51
52 forward_dependent_configs_from = [ "//components/metrics/proto" ] 52 forward_dependent_configs_from = [ "//components/metrics/proto" ]
53 } 53 }
54 54
55 # GYP version: components/metrics.gypi:metrics_gpu
56 source_set("gpu") {
57 sources = [
58 "gpu/gpu_metrics_provider.cc",
59 "gpu/gpu_metrics_provider.h",
60 ]
61
62 deps = [
63 ":metrics",
64 "//gpu/config",
65 ]
66
67 forward_dependent_configs_from = [ ":metrics" ]
68 }
69
55 # GYP version: components/metrics.gypi:metrics_net 70 # GYP version: components/metrics.gypi:metrics_net
56 static_library("net") { 71 static_library("net") {
57 sources = [ 72 sources = [
58 "net/network_metrics_provider.cc", 73 "net/network_metrics_provider.cc",
59 "net/network_metrics_provider.h", 74 "net/network_metrics_provider.h",
60 "net/net_metrics_log_uploader.cc", 75 "net/net_metrics_log_uploader.cc",
61 "net/net_metrics_log_uploader.h", 76 "net/net_metrics_log_uploader.h",
62 "net/wifi_access_point_info_provider.cc", 77 "net/wifi_access_point_info_provider.cc",
63 "net/wifi_access_point_info_provider.h", 78 "net/wifi_access_point_info_provider.h",
64 "net/wifi_access_point_info_provider_chromeos.cc", 79 "net/wifi_access_point_info_provider_chromeos.cc",
(...skipping 16 matching lines...) Expand all
81 ] 96 ]
82 97
83 deps = [ 98 deps = [
84 ":metrics", 99 ":metrics",
85 ] 100 ]
86 101
87 forward_dependent_configs_from = [ ":metrics" ] 102 forward_dependent_configs_from = [ ":metrics" ]
88 } 103 }
89 104
90 # TODO(GYP): metrics_chromeos 105 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « components/metrics.gypi ('k') | components/metrics/gpu/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698