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

Side by Side Diff: components/memory_coordinator.gypi

Issue 2152713003: Revert of Re-reland: Add MemoryCoordinator (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « no previous file | components/memory_coordinator/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
14 ], 13 ],
15 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 14 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
16 }, 15 },
17 { 16 {
18 # GN version: //components/memory_coordinator/common 17 # GN version: //components/memory_coordinator/common
19 'target_name': 'memory_coordinator_common', 18 'target_name': 'memory_coordinator_common',
20 'type': 'static_library', 19 'type': 'none',
21 'dependencies': [ 20 'dependencies': [
22 '<(DEPTH)/base/base.gyp:base',
23 'memory_coordinator_mojo_bindings', 21 'memory_coordinator_mojo_bindings',
24 ], 22 ],
25 'sources': [ 23 'sources': [
26 'memory_coordinator/common/memory_coordinator_client.h', 24 'memory_coordinator/common/memory_coordinator_client.h',
27 'memory_coordinator/common/memory_coordinator_features.cc',
28 'memory_coordinator/common/memory_coordinator_features.h',
29 ], 25 ],
30 }, 26 },
31 { 27 {
32 # GN version: //components/memory_coordinator/child 28 # GN version: //components/memory_coordinator/child
33 'target_name': 'memory_coordinator_child', 29 'target_name': 'memory_coordinator_child',
34 'type': 'static_library', 30 'type': 'static_library',
35 'dependencies': [ 31 'dependencies': [
36 '<(DEPTH)/base/base.gyp:base', 32 '<(DEPTH)/base/base.gyp:base',
37 '<(DEPTH)/services/shell/shell_public.gyp:shell_interfaces',
38 'memory_coordinator_common', 33 'memory_coordinator_common',
39 'memory_coordinator_mojo_bindings', 34 'memory_coordinator_mojo_bindings',
40 ], 35 ],
41 'sources': [ 36 'sources': [
42 'memory_coordinator/child/child_memory_coordinator_impl.cc', 37 'memory_coordinator/child/child_memory_coordinator_impl.cc',
43 'memory_coordinator/child/child_memory_coordinator_impl.h', 38 'memory_coordinator/child/child_memory_coordinator_impl.h',
44 ], 39 ],
45 }, 40 },
46 {
47 # GN version: //components/memory_coordinator/browser
48 'target_name': 'memory_coordinator_browser',
49 'type': 'static_library',
50 'dependencies': [
51 '<(DEPTH)/base/base.gyp:base',
52 '<(DEPTH)/services/shell/shell_public.gyp:shell_interfaces',
53 'memory_coordinator_common',
54 'memory_coordinator_mojo_bindings',
55 ],
56 'sources': [
57 'memory_coordinator/browser/memory_coordinator.cc',
58 'memory_coordinator/browser/memory_coordinator.h',
59 ],
60 },
61 ], 41 ],
62 } 42 }
OLDNEW
« no previous file with comments | « no previous file | components/memory_coordinator/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698