| OLD | NEW |
| 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 'memory_coordinator_common', | 33 'memory_coordinator_common', |
| 38 'memory_coordinator_mojo_bindings', | 34 'memory_coordinator_mojo_bindings', |
| 39 ], | 35 ], |
| 40 'sources': [ | 36 'sources': [ |
| 41 'memory_coordinator/child/child_memory_coordinator_impl.cc', | 37 'memory_coordinator/child/child_memory_coordinator_impl.cc', |
| 42 'memory_coordinator/child/child_memory_coordinator_impl.h', | 38 'memory_coordinator/child/child_memory_coordinator_impl.h', |
| 43 ], | 39 ], |
| 44 }, | 40 }, |
| 45 { | |
| 46 # GN version: //components/memory_coordinator/browser | |
| 47 'target_name': 'memory_coordinator_browser', | |
| 48 'type': 'static_library', | |
| 49 'dependencies': [ | |
| 50 '<(DEPTH)/base/base.gyp:base', | |
| 51 'memory_coordinator_common', | |
| 52 'memory_coordinator_mojo_bindings', | |
| 53 ], | |
| 54 'sources': [ | |
| 55 'memory_coordinator/browser/memory_coordinator.cc', | |
| 56 'memory_coordinator/browser/memory_coordinator.h', | |
| 57 ], | |
| 58 }, | |
| 59 ], | 41 ], |
| 60 } | 42 } |
| OLD | NEW |