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

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: Use feature_list 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 ], 13 ],
14 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 14 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
15 }, 15 },
16 { 16 {
17 # GN version: //components/memory_coordinator/common 17 # GN version: //components/memory_coordinator/common
18 'target_name': 'memory_coordinator_common', 18 'target_name': 'memory_coordinator_common',
19 'type': 'none', 19 'type': 'static_library',
20 'dependencies': [ 20 'dependencies': [
21 '<(DEPTH)/base/base.gyp:base',
21 'memory_coordinator_mojo_bindings', 22 'memory_coordinator_mojo_bindings',
22 ], 23 ],
23 'sources': [ 24 'sources': [
24 'memory_coordinator/common/memory_coordinator_client.h', 25 'memory_coordinator/common/memory_coordinator_client.h',
26 'memory_coordinator/common/memory_coordinator_features.cc',
27 'memory_coordinator/common/memory_coordinator_features.h',
25 ], 28 ],
26 }, 29 },
27 { 30 {
28 # GN version: //components/memory_coordinator/child 31 # GN version: //components/memory_coordinator/child
29 'target_name': 'memory_coordinator_child', 32 'target_name': 'memory_coordinator_child',
30 'type': 'static_library', 33 'type': 'static_library',
31 'dependencies': [ 34 'dependencies': [
32 '<(DEPTH)/base/base.gyp:base', 35 '<(DEPTH)/base/base.gyp:base',
33 'memory_coordinator_common', 36 'memory_coordinator_common',
34 'memory_coordinator_mojo_bindings', 37 'memory_coordinator_mojo_bindings',
35 ], 38 ],
36 'sources': [ 39 'sources': [
37 'memory_coordinator/child/child_memory_coordinator_impl.cc', 40 'memory_coordinator/child/child_memory_coordinator_impl.cc',
38 'memory_coordinator/child/child_memory_coordinator_impl.h', 41 'memory_coordinator/child/child_memory_coordinator_impl.h',
39 ], 42 ],
40 }, 43 },
44 {
45 # GN version: //components/memory_coordinator/browser
46 'target_name': 'memory_coordinator_browser',
47 'type': 'static_library',
48 'dependencies': [
49 '<(DEPTH)/base/base.gyp:base',
50 'memory_coordinator_common',
51 'memory_coordinator_mojo_bindings',
52 ],
53 'sources': [
54 'memory_coordinator/browser/memory_state_notifier.cc',
55 'memory_coordinator/browser/memory_state_notifier.h',
56 ],
57 },
41 ], 58 ],
42 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698