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

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: 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 deps = [ 43 deps = [
44 "//base", 44 "//base",
45 "//components/metrics/proto", 45 "//components/metrics/proto",
46 "//components/variations", 46 "//components/variations",
47 "//third_party/zlib", 47 "//third_party/zlib",
48 ] 48 ]
49 49
50 forward_dependent_configs_from = [ "//components/metrics/proto" ] 50 forward_dependent_configs_from = [ "//components/metrics/proto" ]
51 } 51 }
52 52
53 # GYP version: components/metrics.gypi:metrics_gpu
54 static_library("gpu") {
55 sources = [
56 "gpu/gpu_metrics_provider.cc",
57 "gpu/gpu_metrics_provider.h",
58 ]
59
60 deps = [
61 ":metrics",
62 "//gpu/config",
63 ]
64
65 forward_dependent_configs_from = [ ":metrics" ]
66 }
67
53 # GYP version: components/metrics.gypi:metrics_net 68 # GYP version: components/metrics.gypi:metrics_net
54 static_library("net") { 69 static_library("net") {
55 sources = [ 70 sources = [
56 "net/net_metrics_log_uploader.cc", 71 "net/net_metrics_log_uploader.cc",
57 "net/net_metrics_log_uploader.h", 72 "net/net_metrics_log_uploader.h",
58 ] 73 ]
59 74
60 deps = [ 75 deps = [
61 ":metrics", 76 ":metrics",
62 "//net", 77 "//net",
(...skipping 10 matching lines...) Expand all
73 ] 88 ]
74 89
75 deps = [ 90 deps = [
76 ":metrics", 91 ":metrics",
77 ] 92 ]
78 93
79 forward_dependent_configs_from = [ ":metrics" ] 94 forward_dependent_configs_from = [ ":metrics" ]
80 } 95 }
81 96
82 # TODO(GYP): metrics_chromeos 97 # TODO(GYP): metrics_chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698