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

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

Issue 365793002: Add lots of GN targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/metrics.gypi ('k') | components/policy.gypi » ('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 source_set("metrics") { 6 source_set("metrics") {
6 sources = [ 7 sources = [
8 "compression_utils.cc",
9 "compression_utils.h",
10 "cloned_install_detector.cc",
11 "cloned_install_detector.h",
12 "machine_id_provider.h",
13 "machine_id_provider_stub.cc",
14 "machine_id_provider_win.cc",
7 "metrics_hashes.cc", 15 "metrics_hashes.cc",
8 "metrics_hashes.h", 16 "metrics_hashes.h",
17 "metrics_log.cc",
18 "metrics_log.h",
19 "metrics_log_uploader.cc",
20 "metrics_log_uploader.h",
21 "metrics_log_manager.cc",
22 "metrics_log_manager.h",
23 "metrics_pref_names.cc",
24 "metrics_pref_names.h",
25 "metrics_provider.h",
26 "metrics_reporting_scheduler.cc",
27 "metrics_reporting_scheduler.h",
28 "metrics_service.cc",
29 "metrics_service.h",
30 "metrics_service_client.h",
31 "metrics_service_observer.cc",
32 "metrics_service_observer.h",
33 "metrics_state_manager.cc",
34 "metrics_state_manager.h",
35 "metrics_switches.cc",
36 "metrics_switches.h",
37 "persisted_logs.cc",
38 "persisted_logs.h",
9 ] 39 ]
10 40
11 deps = [ 41 deps = [
12 "//base", 42 "//base",
43 "//components/metrics/proto",
44 "//components/variations",
45 "//third_party/zlib",
13 ] 46 ]
47
48 forward_dependent_configs_from = [ "//components/metrics/proto" ]
14 } 49 }
50
51 # GYP version: components/metrics.gypi:metrics_net
52 static_library("net") {
53 sources = [
54 "net/net_metrics_log_uploader.cc",
55 "net/net_metrics_log_uploader.h",
56 ]
57
58 deps = [
59 ":metrics",
60 "//net",
61 ]
62
63 forward_dependent_configs_from = [ ":metrics" ]
64 }
65
66 # GYP version: components/metrics.gypi:metrics_test_support
67 static_library("test_support") {
68 sources = [
69 "test_metrics_service_client.cc",
70 "test_metrics_service_client.h",
71 ]
72
73 deps = [
74 ":metrics",
75 ]
76
77 forward_dependent_configs_from = [ ":metrics" ]
78 }
79
80 # TODO(GYP): metrics_chromeos
OLDNEW
« no previous file with comments | « components/metrics.gypi ('k') | components/policy.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698