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