| 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 "call_stack_profile_metrics_provider.cc", | 8 "call_stack_profile_metrics_provider.cc", |
| 9 "call_stack_profile_metrics_provider.h", | 9 "call_stack_profile_metrics_provider.h", |
| 10 "clean_exit_beacon.cc", | 10 "clean_exit_beacon.cc", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 public_deps = [ | 60 public_deps = [ |
| 61 "//components/metrics/proto", | 61 "//components/metrics/proto", |
| 62 ] | 62 ] |
| 63 deps = [ | 63 deps = [ |
| 64 "//base", | 64 "//base", |
| 65 "//base:i18n", | 65 "//base:i18n", |
| 66 "//base:prefs", | 66 "//base:prefs", |
| 67 "//components/compression", | 67 "//components/compression", |
| 68 "//components/data_use_measurement/core", |
| 68 "//components/variations", | 69 "//components/variations", |
| 69 ] | 70 ] |
| 70 | 71 |
| 71 if (is_chromeos) { | 72 if (is_chromeos) { |
| 72 deps += [ ":serialization" ] | 73 deps += [ ":serialization" ] |
| 73 } | 74 } |
| 74 | 75 |
| 75 if (is_win) { | 76 if (is_win) { |
| 76 sources -= [ "machine_id_provider_stub.cc" ] | 77 sources -= [ "machine_id_provider_stub.cc" ] |
| 77 } | 78 } |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "//content/public/common", | 206 "//content/public/common", |
| 206 "//testing/gtest", | 207 "//testing/gtest", |
| 207 ] | 208 ] |
| 208 | 209 |
| 209 if (is_linux) { | 210 if (is_linux) { |
| 210 sources += [ "serialization/serialization_utils_unittest.cc" ] | 211 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 211 deps += [ ":serialization" ] | 212 deps += [ ":serialization" ] |
| 212 } | 213 } |
| 213 } | 214 } |
| 214 # TODO(GYP): metrics_chromeos | 215 # TODO(GYP): metrics_chromeos |
| OLD | NEW |