| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 source_set("cpp") { | 5 source_set("cpp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "coordinator.h", | 7 "coordinator.h", |
| 8 "memory_dump_manager_delegate_impl.cc", |
| 9 "memory_dump_manager_delegate_impl.h", |
| 8 ] | 10 ] |
| 9 | 11 |
| 10 deps = [ | 12 deps = [ |
| 11 ":struct_traits", | 13 ":struct_traits", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 public_deps = [ | 16 public_deps = [ |
| 17 "//base", |
| 18 "//mojo/public/cpp/bindings", |
| 15 "//services/memory_instrumentation/public/interfaces", | 19 "//services/memory_instrumentation/public/interfaces", |
| 20 "//services/service_manager/public/cpp", |
| 16 ] | 21 ] |
| 17 } | 22 } |
| 18 | 23 |
| 19 source_set("struct_traits") { | 24 source_set("struct_traits") { |
| 20 sources = [ | 25 sources = [ |
| 21 "memory_instrumentation_traits.cc", | 26 "memory_instrumentation_traits.cc", |
| 22 "memory_instrumentation_traits.h", | 27 "memory_instrumentation_traits.h", |
| 23 ] | 28 ] |
| 24 | 29 |
| 25 public_deps = [ | 30 public_deps = [ |
| 26 "//base", | 31 "//base", |
| 27 "//services/memory_instrumentation/public/interfaces", | 32 "//services/memory_instrumentation/public/interfaces", |
| 28 ] | 33 ] |
| 29 } | 34 } |
| OLD | NEW |