| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 if (is_chromeos) { | 131 if (is_chromeos) { |
| 132 # GYP version: components/metrics.gypi:metrics_leak_detector | 132 # GYP version: components/metrics.gypi:metrics_leak_detector |
| 133 static_library("leak_detector") { | 133 static_library("leak_detector") { |
| 134 sources = [ | 134 sources = [ |
| 135 "leak_detector/call_stack_manager.cc", | 135 "leak_detector/call_stack_manager.cc", |
| 136 "leak_detector/call_stack_manager.h", | 136 "leak_detector/call_stack_manager.h", |
| 137 "leak_detector/call_stack_table.cc", | 137 "leak_detector/call_stack_table.cc", |
| 138 "leak_detector/call_stack_table.h", | 138 "leak_detector/call_stack_table.h", |
| 139 "leak_detector/custom_allocator.cc", | 139 "leak_detector/custom_allocator.cc", |
| 140 "leak_detector/custom_allocator.h", | 140 "leak_detector/custom_allocator.h", |
| 141 "leak_detector/gnu_build_id_reader.cc", |
| 142 "leak_detector/gnu_build_id_reader.h", |
| 141 "leak_detector/leak_analyzer.cc", | 143 "leak_detector/leak_analyzer.cc", |
| 142 "leak_detector/leak_analyzer.h", | 144 "leak_detector/leak_analyzer.h", |
| 143 "leak_detector/leak_detector.cc", | 145 "leak_detector/leak_detector.cc", |
| 144 "leak_detector/leak_detector.h", | 146 "leak_detector/leak_detector.h", |
| 145 "leak_detector/leak_detector_impl.cc", | 147 "leak_detector/leak_detector_impl.cc", |
| 146 "leak_detector/leak_detector_impl.h", | 148 "leak_detector/leak_detector_impl.h", |
| 147 "leak_detector/leak_detector_value_type.cc", | 149 "leak_detector/leak_detector_value_type.cc", |
| 148 "leak_detector/leak_detector_value_type.h", | 150 "leak_detector/leak_detector_value_type.h", |
| 149 "leak_detector/ranked_set.cc", | 151 "leak_detector/ranked_set.cc", |
| 150 "leak_detector/ranked_set.h", | 152 "leak_detector/ranked_set.h", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 | 369 |
| 368 if (is_linux) { | 370 if (is_linux) { |
| 369 sources += [ "serialization/serialization_utils_unittest.cc" ] | 371 sources += [ "serialization/serialization_utils_unittest.cc" ] |
| 370 deps += [ ":serialization" ] | 372 deps += [ ":serialization" ] |
| 371 } | 373 } |
| 372 | 374 |
| 373 if (is_chromeos) { | 375 if (is_chromeos) { |
| 374 deps += [ ":leak_detector_unit_tests" ] | 376 deps += [ ":leak_detector_unit_tests" ] |
| 375 } | 377 } |
| 376 } | 378 } |
| OLD | NEW |