| 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 static_library("metrics") { | 7 static_library("metrics") { |
| 8 sources = [ | 8 sources = [ |
| 9 "call_stack_profile_metrics_provider.cc", | 9 "call_stack_profile_metrics_provider.cc", |
| 10 "call_stack_profile_metrics_provider.h", | 10 "call_stack_profile_metrics_provider.h", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "url_constants.h", | 90 "url_constants.h", |
| 91 ] | 91 ] |
| 92 | 92 |
| 93 public_deps = [ | 93 public_deps = [ |
| 94 "//components/metrics/proto", | 94 "//components/metrics/proto", |
| 95 ] | 95 ] |
| 96 deps = [ | 96 deps = [ |
| 97 ":call_stack_profile_params", | 97 ":call_stack_profile_params", |
| 98 "//base", | 98 "//base", |
| 99 "//base:base_static", | 99 "//base:base_static", |
| 100 "//components/browser_watcher:stability", | 100 "//components/browser_watcher:stability_client", |
| 101 "//components/browser_watcher:stability_data", | |
| 102 "//components/prefs", | 101 "//components/prefs", |
| 103 "//components/variations", | 102 "//components/variations", |
| 104 "//third_party/zlib:compression_utils", | 103 "//third_party/zlib:compression_utils", |
| 105 ] | 104 ] |
| 106 | 105 |
| 107 if (is_chromeos) { | 106 if (is_chromeos) { |
| 108 deps += [ ":serialization" ] | 107 deps += [ ":serialization" ] |
| 109 } | 108 } |
| 110 | 109 |
| 111 if (is_mac) { | 110 if (is_mac) { |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 # Convenience testing target | 382 # Convenience testing target |
| 384 test("metrics_unittests") { | 383 test("metrics_unittests") { |
| 385 sources = [ | 384 sources = [ |
| 386 "//components/test/run_all_unittests.cc", | 385 "//components/test/run_all_unittests.cc", |
| 387 ] | 386 ] |
| 388 deps = [ | 387 deps = [ |
| 389 ":unit_tests", | 388 ":unit_tests", |
| 390 "//components/test:test_support", | 389 "//components/test:test_support", |
| 391 ] | 390 ] |
| 392 } | 391 } |
| OLD | NEW |