| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ":metrics", | 201 ":metrics", |
| 202 ":net", | 202 ":net", |
| 203 ":profiler", | 203 ":profiler", |
| 204 ":test_support", | 204 ":test_support", |
| 205 "//base:prefs_test_support", | 205 "//base:prefs_test_support", |
| 206 "//base/test:test_support", | 206 "//base/test:test_support", |
| 207 "//components/variations", | 207 "//components/variations", |
| 208 "//content/public/common", | 208 "//content/public/common", |
| 209 "//testing/gtest", | 209 "//testing/gtest", |
| 210 ] | 210 ] |
| 211 |
| 212 if (is_linux) { |
| 213 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 214 deps += [ ":serialization" ] |
| 215 } |
| 211 } | 216 } |
| 212 # TODO(GYP): metrics_chromeos | 217 # TODO(GYP): metrics_chromeos |
| OLD | NEW |