blob: e1ac8f00daecdab49e691f20a2592881bcb9546c [file] [log] [blame]
bashi77826ca2016-06-21 15:49:021# 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
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 # GN version: //components/memory_coordinator/public/interfaces
9 'target_name': 'memory_coordinator_mojo_bindings',
10 'type': 'static_library',
11 'sources': [
12 'memory_coordinator/public/interfaces/child_memory_coordinator.mojom',
bashi77f19b32016-07-19 11:19:4313 'memory_coordinator/public/interfaces/memory_coordinator.mojom',
bashi77826ca2016-06-21 15:49:0214 ],
yzshen4e4d53c2016-07-19 06:56:4215 'variables': {
16 'use_new_wrapper_types': 'false',
17 },
bashi77826ca2016-06-21 15:49:0218 'includes': [ '../mojo/mojom_bindings_generator.gypi' ],
19 },
20 {
21 # GN version: //components/memory_coordinator/common
22 'target_name': 'memory_coordinator_common',
bashi77f19b32016-07-19 11:19:4323 'type': 'static_library',
bashi77826ca2016-06-21 15:49:0224 'dependencies': [
bashi77f19b32016-07-19 11:19:4325 '<(DEPTH)/base/base.gyp:base',
bashi77826ca2016-06-21 15:49:0226 'memory_coordinator_mojo_bindings',
27 ],
28 'sources': [
bashica40bc92016-07-21 00:20:4729 'memory_coordinator/common/client_registry.cc',
30 'memory_coordinator/common/client_registry.h',
bashi77826ca2016-06-21 15:49:0231 'memory_coordinator/common/memory_coordinator_client.h',
bashi77f19b32016-07-19 11:19:4332 'memory_coordinator/common/memory_coordinator_features.cc',
33 'memory_coordinator/common/memory_coordinator_features.h',
bashi77826ca2016-06-21 15:49:0234 ],
35 },
36 {
37 # GN version: //components/memory_coordinator/child
38 'target_name': 'memory_coordinator_child',
39 'type': 'static_library',
40 'dependencies': [
41 '<(DEPTH)/base/base.gyp:base',
42 'memory_coordinator_common',
43 'memory_coordinator_mojo_bindings',
44 ],
45 'sources': [
46 'memory_coordinator/child/child_memory_coordinator_impl.cc',
47 'memory_coordinator/child/child_memory_coordinator_impl.h',
48 ],
49 },
bashi77f19b32016-07-19 11:19:4350 {
51 # GN version: //components/memory_coordinator/browser
52 'target_name': 'memory_coordinator_browser',
53 'type': 'static_library',
54 'dependencies': [
55 '<(DEPTH)/base/base.gyp:base',
56 'memory_coordinator_common',
57 'memory_coordinator_mojo_bindings',
58 ],
59 'sources': [
60 'memory_coordinator/browser/memory_coordinator.cc',
61 'memory_coordinator/browser/memory_coordinator.h',
62 ],
63 },
bashi77826ca2016-06-21 15:49:0264 ],
65}