| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 if (is_chromeos) { | 7 if (is_chromeos) { |
| 8 # GYP version: components/metrics.gypi:metrics_leak_detector | 8 # GYP version: components/metrics.gypi:metrics_leak_detector |
| 9 source_set("leak_detector") { | 9 source_set("leak_detector") { |
| 10 sources = [ | 10 sources = [ |
| 11 "call_stack_manager.cc", | 11 "call_stack_manager.cc", |
| 12 "call_stack_manager.h", | 12 "call_stack_manager.h", |
| 13 "call_stack_table.cc", | 13 "call_stack_table.cc", |
| 14 "call_stack_table.h", | 14 "call_stack_table.h", |
| 15 "custom_allocator.cc", | 15 "custom_allocator.cc", |
| 16 "custom_allocator.h", | 16 "custom_allocator.h", |
| 17 "gnu_build_id_reader.cc", |
| 18 "gnu_build_id_reader.h", |
| 17 "leak_analyzer.cc", | 19 "leak_analyzer.cc", |
| 18 "leak_analyzer.h", | 20 "leak_analyzer.h", |
| 19 "leak_detector.cc", | 21 "leak_detector.cc", |
| 20 "leak_detector.h", | 22 "leak_detector.h", |
| 21 "leak_detector_impl.cc", | 23 "leak_detector_impl.cc", |
| 22 "leak_detector_impl.h", | 24 "leak_detector_impl.h", |
| 23 "leak_detector_value_type.cc", | 25 "leak_detector_value_type.cc", |
| 24 "leak_detector_value_type.h", | 26 "leak_detector_value_type.h", |
| 25 "protobuf_to_mojo_converter.cc", | 27 "protobuf_to_mojo_converter.cc", |
| 26 "protobuf_to_mojo_converter.h", | 28 "protobuf_to_mojo_converter.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 56 deps = [ | 58 deps = [ |
| 57 ":interfaces", | 59 ":interfaces", |
| 58 ":leak_detector", | 60 ":leak_detector", |
| 59 "//base", | 61 "//base", |
| 60 "//components/metrics/proto:proto", | 62 "//components/metrics/proto:proto", |
| 61 "//content/test:test_support", | 63 "//content/test:test_support", |
| 62 "//testing/gtest", | 64 "//testing/gtest", |
| 63 ] | 65 ] |
| 64 } | 66 } |
| 65 } | 67 } |
| OLD | NEW |