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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 source_set("leak_detector") { | 115 source_set("leak_detector") { |
116 sources = [ | 116 sources = [ |
117 "leak_detector/call_stack_manager.cc", | 117 "leak_detector/call_stack_manager.cc", |
118 "leak_detector/call_stack_manager.h", | 118 "leak_detector/call_stack_manager.h", |
119 "leak_detector/call_stack_table.cc", | 119 "leak_detector/call_stack_table.cc", |
120 "leak_detector/call_stack_table.h", | 120 "leak_detector/call_stack_table.h", |
121 "leak_detector/custom_allocator.cc", | 121 "leak_detector/custom_allocator.cc", |
122 "leak_detector/custom_allocator.h", | 122 "leak_detector/custom_allocator.h", |
123 "leak_detector/leak_analyzer.cc", | 123 "leak_detector/leak_analyzer.cc", |
124 "leak_detector/leak_analyzer.h", | 124 "leak_detector/leak_analyzer.h", |
| 125 "leak_detector/leak_detector.cc", |
| 126 "leak_detector/leak_detector.h", |
125 "leak_detector/leak_detector_impl.cc", | 127 "leak_detector/leak_detector_impl.cc", |
126 "leak_detector/leak_detector_impl.h", | 128 "leak_detector/leak_detector_impl.h", |
127 "leak_detector/leak_detector_value_type.cc", | 129 "leak_detector/leak_detector_value_type.cc", |
128 "leak_detector/leak_detector_value_type.h", | 130 "leak_detector/leak_detector_value_type.h", |
129 "leak_detector/ranked_list.cc", | 131 "leak_detector/ranked_list.cc", |
130 "leak_detector/ranked_list.h", | 132 "leak_detector/ranked_list.h", |
131 ] | 133 ] |
132 | 134 |
133 deps = [ | 135 deps = [ |
134 "//base", | 136 "//base", |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 } | 279 } |
278 | 280 |
279 if (is_chromeos) { | 281 if (is_chromeos) { |
280 source_set("leak_detector_unit_tests") { | 282 source_set("leak_detector_unit_tests") { |
281 testonly = true | 283 testonly = true |
282 sources = [ | 284 sources = [ |
283 "leak_detector/call_stack_manager_unittest.cc", | 285 "leak_detector/call_stack_manager_unittest.cc", |
284 "leak_detector/call_stack_table_unittest.cc", | 286 "leak_detector/call_stack_table_unittest.cc", |
285 "leak_detector/leak_analyzer_unittest.cc", | 287 "leak_detector/leak_analyzer_unittest.cc", |
286 "leak_detector/leak_detector_impl_unittest.cc", | 288 "leak_detector/leak_detector_impl_unittest.cc", |
| 289 "leak_detector/leak_detector_unittest.cc", |
287 "leak_detector/ranked_list_unittest.cc", | 290 "leak_detector/ranked_list_unittest.cc", |
288 ] | 291 ] |
289 | 292 |
290 deps = [ | 293 deps = [ |
291 ":leak_detector", | 294 ":leak_detector", |
292 "//base", | 295 "//base", |
293 "//testing/gtest", | 296 "//testing/gtest", |
294 ] | 297 ] |
295 } | 298 } |
296 } | 299 } |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
335 if (is_linux) { | 338 if (is_linux) { |
336 sources += [ "serialization/serialization_utils_unittest.cc" ] | 339 sources += [ "serialization/serialization_utils_unittest.cc" ] |
337 deps += [ ":serialization" ] | 340 deps += [ ":serialization" ] |
338 } | 341 } |
339 | 342 |
340 if (is_chromeos) { | 343 if (is_chromeos) { |
341 deps += [ ":leak_detector_unit_tests" ] | 344 deps += [ ":leak_detector_unit_tests" ] |
342 } | 345 } |
343 } | 346 } |
344 # TODO(GYP): metrics_chromeos | 347 # TODO(GYP): metrics_chromeos |
OLD | NEW |