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

Side by Side Diff: components/memory_coordinator.gypi

Issue 2094583002: Add MemoryCoordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Create handle per child Created 4 years, 5 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 (c) 2016 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2016 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/memory_coordinator/public/interfaces 8 # GN version: //components/memory_coordinator/public/interfaces
9 'target_name': 'memory_coordinator_mojo_bindings', 9 'target_name': 'memory_coordinator_mojo_bindings',
10 'type': 'static_library', 10 'type': 'static_library',
11 'sources': [ 11 'sources': [
12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom', 12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom',
13 'memory_coordinator/public/interfaces/memory_coordinator.mojom',
13 ], 14 ],
14 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 15 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
15 }, 16 },
16 { 17 {
17 # GN version: //components/memory_coordinator/common 18 # GN version: //components/memory_coordinator/common
18 'target_name': 'memory_coordinator_common', 19 'target_name': 'memory_coordinator_common',
19 'type': 'none', 20 'type': 'static_library',
20 'dependencies': [ 21 'dependencies': [
22 '<(DEPTH)/base/base.gyp:base',
21 'memory_coordinator_mojo_bindings', 23 'memory_coordinator_mojo_bindings',
22 ], 24 ],
23 'sources': [ 25 'sources': [
24 'memory_coordinator/common/memory_coordinator_client.h', 26 'memory_coordinator/common/memory_coordinator_client.h',
27 'memory_coordinator/common/memory_coordinator_features.cc',
28 'memory_coordinator/common/memory_coordinator_features.h',
25 ], 29 ],
26 }, 30 },
27 { 31 {
28 # GN version: //components/memory_coordinator/child 32 # GN version: //components/memory_coordinator/child
29 'target_name': 'memory_coordinator_child', 33 'target_name': 'memory_coordinator_child',
30 'type': 'static_library', 34 'type': 'static_library',
31 'dependencies': [ 35 'dependencies': [
32 '<(DEPTH)/base/base.gyp:base', 36 '<(DEPTH)/base/base.gyp:base',
33 'memory_coordinator_common', 37 'memory_coordinator_common',
34 'memory_coordinator_mojo_bindings', 38 'memory_coordinator_mojo_bindings',
35 ], 39 ],
36 'sources': [ 40 'sources': [
37 'memory_coordinator/child/child_memory_coordinator_impl.cc', 41 'memory_coordinator/child/child_memory_coordinator_impl.cc',
38 'memory_coordinator/child/child_memory_coordinator_impl.h', 42 'memory_coordinator/child/child_memory_coordinator_impl.h',
39 ], 43 ],
40 }, 44 },
45 {
46 # GN version: //components/memory_coordinator/browser
47 'target_name': 'memory_coordinator_browser',
48 'type': 'static_library',
49 'dependencies': [
50 '<(DEPTH)/base/base.gyp:base',
51 'memory_coordinator_common',
52 'memory_coordinator_mojo_bindings',
53 ],
54 'sources': [
55 'memory_coordinator/browser/memory_coordinator.cc',
56 'memory_coordinator/browser/memory_coordinator.h',
57 ],
58 },
41 ], 59 ],
42 } 60 }
OLDNEW
« no previous file with comments | « no previous file | components/memory_coordinator/DEPS » ('j') | components/memory_coordinator/browser/memory_coordinator.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698