| 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 "compression_utils.cc", | 8 "compression_utils.cc", |
| 9 "compression_utils.h", | 9 "compression_utils.h", |
| 10 "cloned_install_detector.cc", | 10 "cloned_install_detector.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "//components/metrics/proto", | 43 "//components/metrics/proto", |
| 44 "//components/variations", | 44 "//components/variations", |
| 45 "//third_party/zlib", | 45 "//third_party/zlib", |
| 46 ] | 46 ] |
| 47 | 47 |
| 48 forward_dependent_configs_from = [ "//components/metrics/proto" ] | 48 forward_dependent_configs_from = [ "//components/metrics/proto" ] |
| 49 } | 49 } |
| 50 | 50 |
| 51 # GYP version: components/metrics.gypi:metrics_net | 51 # GYP version: components/metrics.gypi:metrics_net |
| 52 static_library("net") { | 52 static_library("net") { |
| 53 output_name = "metrics_net" |
| 53 sources = [ | 54 sources = [ |
| 54 "net/net_metrics_log_uploader.cc", | 55 "net/net_metrics_log_uploader.cc", |
| 55 "net/net_metrics_log_uploader.h", | 56 "net/net_metrics_log_uploader.h", |
| 56 ] | 57 ] |
| 57 | 58 |
| 58 deps = [ | 59 deps = [ |
| 59 ":metrics", | 60 ":metrics", |
| 60 "//net", | 61 "//net", |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 forward_dependent_configs_from = [ ":metrics" ] | 64 forward_dependent_configs_from = [ ":metrics" ] |
| 64 } | 65 } |
| 65 | 66 |
| 66 # GYP version: components/metrics.gypi:metrics_test_support | 67 # GYP version: components/metrics.gypi:metrics_test_support |
| 67 static_library("test_support") { | 68 static_library("test_support") { |
| 69 output_name = "metrics_test_support" |
| 68 sources = [ | 70 sources = [ |
| 69 "test_metrics_service_client.cc", | 71 "test_metrics_service_client.cc", |
| 70 "test_metrics_service_client.h", | 72 "test_metrics_service_client.h", |
| 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 |