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 2144163002: Extract client handing from ChildMemoryCoordinatorImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mc-2-notify
Patch Set: rebase 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/browser/memory_coordinator.h » ('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', 13 'memory_coordinator/public/interfaces/memory_coordinator.mojom',
14 ], 14 ],
15 'variables': { 15 'variables': {
16 'use_new_wrapper_types': 'false', 16 'use_new_wrapper_types': 'false',
17 }, 17 },
18 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], 18 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
19 }, 19 },
20 { 20 {
21 # GN version: //components/memory_coordinator/common 21 # GN version: //components/memory_coordinator/common
22 'target_name': 'memory_coordinator_common', 22 'target_name': 'memory_coordinator_common',
23 'type': 'static_library', 23 'type': 'static_library',
24 'dependencies': [ 24 'dependencies': [
25 '<(DEPTH)/base/base.gyp:base', 25 '<(DEPTH)/base/base.gyp:base',
26 'memory_coordinator_mojo_bindings', 26 'memory_coordinator_mojo_bindings',
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'memory_coordinator/common/client_registry.cc',
30 'memory_coordinator/common/client_registry.h',
29 'memory_coordinator/common/memory_coordinator_client.h', 31 'memory_coordinator/common/memory_coordinator_client.h',
30 'memory_coordinator/common/memory_coordinator_features.cc', 32 'memory_coordinator/common/memory_coordinator_features.cc',
31 'memory_coordinator/common/memory_coordinator_features.h', 33 'memory_coordinator/common/memory_coordinator_features.h',
32 ], 34 ],
33 }, 35 },
34 { 36 {
35 # GN version: //components/memory_coordinator/child 37 # GN version: //components/memory_coordinator/child
36 'target_name': 'memory_coordinator_child', 38 'target_name': 'memory_coordinator_child',
37 'type': 'static_library', 39 'type': 'static_library',
38 'dependencies': [ 40 'dependencies': [
(...skipping 15 matching lines...) Expand all
54 'memory_coordinator_common', 56 'memory_coordinator_common',
55 'memory_coordinator_mojo_bindings', 57 'memory_coordinator_mojo_bindings',
56 ], 58 ],
57 'sources': [ 59 'sources': [
58 'memory_coordinator/browser/memory_coordinator.cc', 60 'memory_coordinator/browser/memory_coordinator.cc',
59 'memory_coordinator/browser/memory_coordinator.h', 61 'memory_coordinator/browser/memory_coordinator.h',
60 ], 62 ],
61 }, 63 },
62 ], 64 ],
63 } 65 }
OLDNEW
« no previous file with comments | « no previous file | components/memory_coordinator/browser/memory_coordinator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698