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", |
| 9 "clean_exit_beacon.h", |
8 "client_info.cc", | 10 "client_info.cc", |
9 "client_info.h", | 11 "client_info.h", |
10 "cloned_install_detector.cc", | 12 "cloned_install_detector.cc", |
11 "cloned_install_detector.h", | 13 "cloned_install_detector.h", |
12 "compression_utils.cc", | 14 "compression_utils.cc", |
13 "compression_utils.h", | 15 "compression_utils.h", |
14 "machine_id_provider.h", | 16 "machine_id_provider.h", |
15 "machine_id_provider_stub.cc", | 17 "machine_id_provider_stub.cc", |
16 "machine_id_provider_win.cc", | 18 "machine_id_provider_win.cc", |
17 "metrics_hashes.cc", | 19 "metrics_hashes.cc", |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 ] | 73 ] |
72 | 74 |
73 deps = [ | 75 deps = [ |
74 ":metrics", | 76 ":metrics", |
75 ] | 77 ] |
76 | 78 |
77 forward_dependent_configs_from = [ ":metrics" ] | 79 forward_dependent_configs_from = [ ":metrics" ] |
78 } | 80 } |
79 | 81 |
80 # TODO(GYP): metrics_chromeos | 82 # TODO(GYP): metrics_chromeos |
OLD | NEW |