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

Side by Side Diff: components/metrics.gypi

Issue 394093003: Moves components/metrics/chromeos to c/m/serialization/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added os=="linux" GYP guards 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/chromeos/metric_sample.h » ('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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/metrics 8 # GN version: //components/metrics
9 'target_name': 'metrics', 9 'target_name': 'metrics',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'metrics/metrics_state_manager.cc', 46 'metrics/metrics_state_manager.cc',
47 'metrics/metrics_state_manager.h', 47 'metrics/metrics_state_manager.h',
48 'metrics/metrics_switches.cc', 48 'metrics/metrics_switches.cc',
49 'metrics/metrics_switches.h', 49 'metrics/metrics_switches.h',
50 'metrics/persisted_logs.cc', 50 'metrics/persisted_logs.cc',
51 'metrics/persisted_logs.h', 51 'metrics/persisted_logs.h',
52 ], 52 ],
53 'conditions': [ 53 'conditions': [
54 ['chromeos==1', { 54 ['chromeos==1', {
55 'dependencies': [ 55 'dependencies': [
56 'metrics_chromeos', 56 'metrics_serialization',
57 ], 57 ],
58 }], 58 }],
59 ['OS=="win"', { 59 ['OS=="win"', {
60 'sources!': [ 60 'sources!': [
61 'metrics/machine_id_provider_stub.cc', 61 'metrics/machine_id_provider_stub.cc',
62 ], 62 ],
63 }], 63 }],
64 ], 64 ],
65 }, 65 },
66 { 66 {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'export_dependent_settings': [ 118 'export_dependent_settings': [
119 'component_metrics_proto', 119 'component_metrics_proto',
120 ], 120 ],
121 'sources': [ 121 'sources': [
122 'metrics/test_metrics_service_client.cc', 122 'metrics/test_metrics_service_client.cc',
123 'metrics/test_metrics_service_client.h', 123 'metrics/test_metrics_service_client.h',
124 ], 124 ],
125 }, 125 },
126 ], 126 ],
127 'conditions': [ 127 'conditions': [
128 ['chromeos==1', { 128 ['OS=="linux"', {
129 'targets': [ 129 'targets': [
130 { 130 {
131 'target_name': 'metrics_chromeos', 131 'target_name': 'metrics_serialization',
132 'type': 'static_library', 132 'type': 'static_library',
133 'sources': [ 133 'sources': [
134 'metrics/chromeos/serialization_utils.cc', 134 'metrics/serialization/serialization_utils.cc',
135 'metrics/chromeos/serialization_utils.h', 135 'metrics/serialization/serialization_utils.h',
136 'metrics/chromeos/metric_sample.cc', 136 'metrics/serialization/metric_sample.cc',
137 'metrics/chromeos/metric_sample.h', 137 'metrics/serialization/metric_sample.h',
138 ], 138 ],
139 'dependencies': [ 139 'dependencies': [
140 '../base/base.gyp:base', 140 '../base/base.gyp:base',
141 ], 141 ],
142 }, 142 },
143 ], 143 ],
144 }], 144 }],
145 ], 145 ],
146 } 146 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/metrics/chromeos/metric_sample.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698