| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//components/metrics/proto", | 47 "//components/metrics/proto", |
| 48 "//components/variations", | 48 "//components/variations", |
| 49 "//third_party/zlib", | 49 "//third_party/zlib", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 forward_dependent_configs_from = [ "//components/metrics/proto" ] | 52 forward_dependent_configs_from = [ "//components/metrics/proto" ] |
| 53 } | 53 } |
| 54 | 54 |
| 55 # GYP version: components/metrics.gypi:metrics_gpu |
| 56 source_set("gpu") { |
| 57 sources = [ |
| 58 "gpu/gpu_metrics_provider.cc", |
| 59 "gpu/gpu_metrics_provider.h", |
| 60 ] |
| 61 |
| 62 deps = [ |
| 63 ":metrics", |
| 64 "//gpu/config", |
| 65 ] |
| 66 |
| 67 forward_dependent_configs_from = [ ":metrics" ] |
| 68 } |
| 69 |
| 55 # GYP version: components/metrics.gypi:metrics_net | 70 # GYP version: components/metrics.gypi:metrics_net |
| 56 static_library("net") { | 71 static_library("net") { |
| 57 sources = [ | 72 sources = [ |
| 58 "net/network_metrics_provider.cc", | 73 "net/network_metrics_provider.cc", |
| 59 "net/network_metrics_provider.h", | 74 "net/network_metrics_provider.h", |
| 60 "net/net_metrics_log_uploader.cc", | 75 "net/net_metrics_log_uploader.cc", |
| 61 "net/net_metrics_log_uploader.h", | 76 "net/net_metrics_log_uploader.h", |
| 62 "net/wifi_access_point_info_provider.cc", | 77 "net/wifi_access_point_info_provider.cc", |
| 63 "net/wifi_access_point_info_provider.h", | 78 "net/wifi_access_point_info_provider.h", |
| 64 "net/wifi_access_point_info_provider_chromeos.cc", | 79 "net/wifi_access_point_info_provider_chromeos.cc", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 81 ] | 96 ] |
| 82 | 97 |
| 83 deps = [ | 98 deps = [ |
| 84 ":metrics", | 99 ":metrics", |
| 85 ] | 100 ] |
| 86 | 101 |
| 87 forward_dependent_configs_from = [ ":metrics" ] | 102 forward_dependent_configs_from = [ ":metrics" ] |
| 88 } | 103 } |
| 89 | 104 |
| 90 # TODO(GYP): metrics_chromeos | 105 # TODO(GYP): metrics_chromeos |
| OLD | NEW |