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

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

Issue 2819413002: [memory-infra] Remove MemoryDumpManagerDelegate (Closed)
Patch Set: 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 source_set("cpp") {
Primiano Tucci (use gerrit) 2017/04/19 15:44:34 I think this needs to become a component("cpp") to
ssid 2017/04/20 01:18:21 Unfortunately since this exists I cannot create an
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 deps = [ 12 deps = [
13 ":struct_traits", 13 ":struct_traits",
14 ] 14 ]
15 15
16 public_deps = [ 16 public_deps = [
17 "//base", 17 "//base",
18 "//mojo/public/cpp/bindings", 18 "//mojo/public/cpp/bindings",
19 "//services/resource_coordinator/public/interfaces", 19 "//services/resource_coordinator/public/interfaces",
20 "//services/service_manager/public/cpp", 20 "//services/service_manager/public/cpp",
21 ] 21 ]
22 } 22 }
23 23
24 source_set("struct_traits") { 24 source_set("struct_traits") {
25 sources = [ 25 sources = [
26 "memory/memory_instrumentation_struct_traits.cc", 26 "memory/memory_instrumentation_struct_traits.cc",
27 "memory/memory_instrumentation_struct_traits.h", 27 "memory/memory_instrumentation_struct_traits.h",
28 ] 28 ]
29 29
30 public_deps = [ 30 public_deps = [
31 "//base", 31 "//base",
32 "//services/resource_coordinator/public/interfaces", 32 "//services/resource_coordinator/public/interfaces",
33 ] 33 ]
34 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698