Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: services/resource_coordinator/public/cpp/BUILD.gn

Issue 2819413002: [memory-infra] Remove MemoryDumpManagerDelegate (Closed)
Patch Set: rebase. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 component("resource_coordinator_cpp") {
6 sources = [ 6 sources = [
7 "memory/coordinator.h", 7 "memory/coordinator.h",
8 "memory/memory_dump_manager_delegate_impl.cc", 8 "memory/process_local_dump_manager_impl.cc",
9 "memory/memory_dump_manager_delegate_impl.h", 9 "memory/process_local_dump_manager_impl.h",
10 ] 10 ]
11 11
12 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_MEMORY_IMPLEMENTATION" ]
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:interfaces_internal",
20 "//services/service_manager/public/cpp", 22 "//services/service_manager/public/cpp",
21 ] 23 ]
24
25 allow_circular_includes_from = [ "//services/resource_coordinator/public/inter faces:interfaces_internal" ]
22 } 26 }
23 27
24 source_set("struct_traits") { 28 source_set("struct_traits") {
25 sources = [ 29 sources = [
26 "memory/memory_instrumentation_struct_traits.cc", 30 "memory/memory_instrumentation_struct_traits.cc",
27 "memory/memory_instrumentation_struct_traits.h", 31 "memory/memory_instrumentation_struct_traits.h",
28 ] 32 ]
29 33
34 defines = [ "SERVICES_RESOURCE_COORDINATOR_PUBLIC_CPP_MEMORY_IMPLEMENTATION" ]
35
30 public_deps = [ 36 public_deps = [
31 "//base", 37 "//base",
32 "//services/resource_coordinator/public/interfaces", 38 "//services/resource_coordinator/public/interfaces:interfaces_internal",
33 ] 39 ]
34 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698