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

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: gyp Created 4 years, 6 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',
(...skipping 14 matching lines...) Expand all
25 ], 25 ],
26 }, 26 },
27 { 27 {
28 # GN version: //components/memory_coordinator/child 28 # GN version: //components/memory_coordinator/child
29 'target_name': 'memory_coordinator_child', 29 'target_name': 'memory_coordinator_child',
30 'type': 'static_library', 30 'type': 'static_library',
31 'dependencies': [ 31 'dependencies': [
32 '<(DEPTH)/base/base.gyp:base', 32 '<(DEPTH)/base/base.gyp:base',
33 'memory_coordinator_common', 33 'memory_coordinator_common',
34 'memory_coordinator_mojo_bindings', 34 'memory_coordinator_mojo_bindings',
35 '../third_party/WebKit/public/blink.gyp:blink',
36 ],
37 'sources': [
38 'memory_coordinator/child/blink_memory_coordinator_client.cc',
39 'memory_coordinator/child/blink_memory_coordinator_client.h',
40 'memory_coordinator/child/child_memory_coordinator_impl.cc',
41 'memory_coordinator/child/child_memory_coordinator_impl.h',
42 ],
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',
35 ], 52 ],
36 'sources': [ 53 'sources': [
37 'memory_coordinator/child/child_memory_coordinator_impl.cc', 54 'memory_coordinator/browser/memory_state_notifier.cc',
38 'memory_coordinator/child/child_memory_coordinator_impl.h', 55 'memory_coordinator/browser/memory_state_notifier.h',
39 ], 56 ],
40 }, 57 },
41 ], 58 ],
42 } 59 }
OLDNEW
« no previous file with comments | « no previous file | components/memory_coordinator/DEPS » ('j') | components/memory_coordinator/browser/memory_state_notifier.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698