| 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 component("resource_coordinator_cpp") { | 5 component("resource_coordinator_cpp") { |
| 6 sources = [ | 6 sources = [ |
| 7 "coordination_unit_id.cc", | 7 "coordination_unit_id.cc", |
| 8 "coordination_unit_id.h", | 8 "coordination_unit_id.h", |
| 9 "coordination_unit_types.h", | 9 "coordination_unit_types.h", |
| 10 "memory_instrumentation/client_process_impl.cc", | 10 "memory_instrumentation/client_process_impl.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_IMPLEMENTATION" ] | 21 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_IMPLEMENTATION" ] |
| 22 | 22 |
| 23 deps = [ | 23 deps = [ |
| 24 ":struct_traits", | 24 ":struct_traits", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 public_deps = [ | 27 public_deps = [ |
| 28 "//base", | 28 "//base", |
| 29 "//mojo/public/cpp/bindings", | 29 "//mojo/public/cpp/bindings", |
| 30 "//services/resource_coordinator/public/interfaces:interfaces_internal", | 30 "//services/resource_coordinator/public/interfaces:interfaces_internal", |
| 31 "//services/resource_coordinator/public/interfaces:interfaces_internal_blink
", |
| 31 "//services/service_manager/public/cpp", | 32 "//services/service_manager/public/cpp", |
| 32 "//third_party/smhasher:murmurhash2", | 33 "//third_party/smhasher:murmurhash2", |
| 33 ] | 34 ] |
| 34 | 35 |
| 35 allow_circular_includes_from = [ "//services/resource_coordinator/public/inter
faces:interfaces_internal" ] | 36 allow_circular_includes_from = [ |
| 37 "//services/resource_coordinator/public/interfaces:interfaces_internal", |
| 38 "//services/resource_coordinator/public/interfaces:interfaces_internal_blink
", |
| 39 ] |
| 36 } | 40 } |
| 37 | 41 |
| 38 source_set("struct_traits") { | 42 source_set("struct_traits") { |
| 39 sources = [ | 43 sources = [ |
| 40 "coordination_unit_struct_traits.cc", | 44 "coordination_unit_struct_traits.cc", |
| 41 "coordination_unit_struct_traits.h", | 45 "coordination_unit_struct_traits.h", |
| 42 "memory_instrumentation/memory_instrumentation_struct_traits.cc", | 46 "memory_instrumentation/memory_instrumentation_struct_traits.cc", |
| 43 "memory_instrumentation/memory_instrumentation_struct_traits.h", | 47 "memory_instrumentation/memory_instrumentation_struct_traits.h", |
| 44 ] | 48 ] |
| 45 | 49 |
| 46 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_IMPLEMENTATION" ] | 50 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_IMPLEMENTATION" ] |
| 47 | 51 |
| 48 public_deps = [ | 52 public_deps = [ |
| 49 "//base", | 53 "//base", |
| 50 "//services/resource_coordinator/public/interfaces:interfaces_internal", | 54 "//services/resource_coordinator/public/interfaces:interfaces_internal", |
| 51 ] | 55 ] |
| 52 } | 56 } |
| OLD | NEW |