| 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', | 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 Loading... |
| 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 } |
| OLD | NEW |