OLD | NEW |
---|---|
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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 "//base", | 57 "//base", |
58 "//base:i18n", | 58 "//base:i18n", |
59 "//base:prefs", | 59 "//base:prefs", |
60 "//components/variations", | 60 "//components/variations", |
61 "//third_party/zlib", | 61 "//third_party/zlib", |
62 ] | 62 ] |
63 | 63 |
64 if (is_chromeos) { | 64 if (is_chromeos) { |
65 deps += [ ":serialization" ] | 65 deps += [ ":serialization" ] |
66 } | 66 } |
67 | |
68 if (is_win) { | |
69 sources -= [ "machine_id_provider_stub.cc" ] | |
Slava Chigrin
2015/01/23 21:05:41
Same as in GYP
https://code.google.com/p/chromium
| |
70 } | |
67 } | 71 } |
68 | 72 |
69 # GYP version: components/metrics.gypi:metrics_gpu | 73 # GYP version: components/metrics.gypi:metrics_gpu |
70 source_set("gpu") { | 74 source_set("gpu") { |
71 sources = [ | 75 sources = [ |
72 "gpu/gpu_metrics_provider.cc", | 76 "gpu/gpu_metrics_provider.cc", |
73 "gpu/gpu_metrics_provider.h", | 77 "gpu/gpu_metrics_provider.h", |
74 ] | 78 ] |
75 | 79 |
76 public_deps = [ | 80 public_deps = [ |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
181 ":profiler", | 185 ":profiler", |
182 ":test_support", | 186 ":test_support", |
183 "//base:prefs_test_support", | 187 "//base:prefs_test_support", |
184 "//base/test:test_support", | 188 "//base/test:test_support", |
185 "//components/variations", | 189 "//components/variations", |
186 "//content/public/common", | 190 "//content/public/common", |
187 "//testing/gtest", | 191 "//testing/gtest", |
188 ] | 192 ] |
189 } | 193 } |
190 # TODO(GYP): metrics_chromeos | 194 # TODO(GYP): metrics_chromeos |
OLD | NEW |