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 "memory/coordinator.h", | 7 "memory/coordinator.h", |
8 "memory/memory_dump_manager_delegate_impl.cc", | 8 "memory/memory_dump_manager_delegate_impl.cc", |
9 "memory/memory_dump_manager_delegate_impl.h", | 9 "memory/memory_dump_manager_delegate_impl.h", |
| 10 "resource_coordinator_interface.cc", |
| 11 "resource_coordinator_interface.h", |
10 ] | 12 ] |
11 | 13 |
12 deps = [ | 14 deps = [ |
13 ":struct_traits", | 15 ":struct_traits", |
14 ] | 16 ] |
15 | 17 |
16 public_deps = [ | 18 public_deps = [ |
17 "//base", | 19 "//base", |
18 "//mojo/public/cpp/bindings", | 20 "//mojo/public/cpp/bindings", |
19 "//services/resource_coordinator/public/interfaces", | 21 "//services/resource_coordinator/public/interfaces", |
20 "//services/service_manager/public/cpp", | 22 "//services/service_manager/public/cpp", |
21 ] | 23 ] |
22 } | 24 } |
23 | 25 |
24 source_set("struct_traits") { | 26 source_set("struct_traits") { |
25 sources = [ | 27 sources = [ |
26 "memory/memory_instrumentation_struct_traits.cc", | 28 "memory/memory_instrumentation_struct_traits.cc", |
27 "memory/memory_instrumentation_struct_traits.h", | 29 "memory/memory_instrumentation_struct_traits.h", |
28 ] | 30 ] |
29 | 31 |
30 public_deps = [ | 32 public_deps = [ |
31 "//base", | 33 "//base", |
32 "//services/resource_coordinator/public/interfaces", | 34 "//services/resource_coordinator/public/interfaces", |
33 ] | 35 ] |
34 } | 36 } |
OLD | NEW |