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

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: remove GPUMetricsProviderTest from iOS build due to 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 30 matching lines...) Expand all
41 deps = [ 41 deps = [
42 "//base", 42 "//base",
43 "//components/metrics/proto", 43 "//components/metrics/proto",
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_gpu
52 static_library("gpu") {
53 sources = [
54 "gpu/gpu_metrics_provider.cc",
55 "gpu/gpu_metrics_provider.h",
56 ]
57
58 deps = [
59 ":metrics",
60 "//gpu/config",
61 ]
62
63 forward_dependent_configs_from = [ ":metrics" ]
64 }
65
51 # GYP version: components/metrics.gypi:metrics_net 66 # GYP version: components/metrics.gypi:metrics_net
52 static_library("net") { 67 static_library("net") {
53 sources = [ 68 sources = [
54 "net/net_metrics_log_uploader.cc", 69 "net/net_metrics_log_uploader.cc",
55 "net/net_metrics_log_uploader.h", 70 "net/net_metrics_log_uploader.h",
56 ] 71 ]
57 72
58 deps = [ 73 deps = [
59 ":metrics", 74 ":metrics",
60 "//net", 75 "//net",
(...skipping 10 matching lines...) Expand all
71 ] 86 ]
72 87
73 deps = [ 88 deps = [
74 ":metrics", 89 ":metrics",
75 ] 90 ]
76 91
77 forward_dependent_configs_from = [ ":metrics" ] 92 forward_dependent_configs_from = [ ":metrics" ]
78 } 93 }
79 94
80 # TODO(GYP): metrics_chromeos 95 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698