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