| 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 declare_args() { | 5 declare_args() { |
| 6 # Overrides os name in uma metrics log to "Blimp". | 6 # Overrides os name in uma metrics log to "Blimp". |
| 7 metrics_use_blimp = false | 7 metrics_use_blimp = false |
| 8 } | 8 } |
| 9 | 9 |
| 10 # These are only used by the blimp team, which has entirely migrated to gn, | 10 # These are only used by the blimp team, which has entirely migrated to gn, |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 "url_constants.h", | 78 "url_constants.h", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 public_deps = [ | 81 public_deps = [ |
| 82 "//components/metrics/proto", | 82 "//components/metrics/proto", |
| 83 ] | 83 ] |
| 84 deps = [ | 84 deps = [ |
| 85 ":call_stack_profile_params", | 85 ":call_stack_profile_params", |
| 86 "//base", | 86 "//base", |
| 87 "//base:base_static", | 87 "//base:base_static", |
| 88 "//components/browser_watcher:stability", |
| 88 "//components/prefs", | 89 "//components/prefs", |
| 89 "//components/variations", | 90 "//components/variations", |
| 90 "//third_party/zlib:compression_utils", | 91 "//third_party/zlib:compression_utils", |
| 91 ] | 92 ] |
| 92 | 93 |
| 93 if (is_chromeos) { | 94 if (is_chromeos) { |
| 94 deps += [ ":serialization" ] | 95 deps += [ ":serialization" ] |
| 95 } | 96 } |
| 96 | 97 |
| 97 if (is_mac) { | 98 if (is_mac) { |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 deps += [ "leak_detector:unit_tests" ] | 351 deps += [ "leak_detector:unit_tests" ] |
| 351 } | 352 } |
| 352 | 353 |
| 353 # iOS is not supported by the profiler and the ios-simulator bot chokes on | 354 # iOS is not supported by the profiler and the ios-simulator bot chokes on |
| 354 # these tests. | 355 # these tests. |
| 355 if (is_ios) { | 356 if (is_ios) { |
| 356 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] | 357 sources -= [ "child_call_stack_profile_collector_unittest.cc" ] |
| 357 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] | 358 deps -= [ "//components/metrics/public/cpp:call_stack_unit_tests" ] |
| 358 } | 359 } |
| 359 } | 360 } |
| OLD | NEW |