OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_variables.gypi', | 10 'mojo_variables.gypi', |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 'message_pump/message_pump_mojo_unittest.cc', | 119 'message_pump/message_pump_mojo_unittest.cc', |
120 ], | 120 ], |
121 }, | 121 }, |
122 { | 122 { |
123 'target_name': 'mojo_application_bindings_mojom', | 123 'target_name': 'mojo_application_bindings_mojom', |
124 'type': 'none', | 124 'type': 'none', |
125 'variables': { | 125 'variables': { |
126 'mojom_files': [ | 126 'mojom_files': [ |
127 'services/package_manager/public/interfaces/catalog.mojom', | 127 'services/package_manager/public/interfaces/catalog.mojom', |
128 'services/package_manager/public/interfaces/resolver.mojom', | 128 'services/package_manager/public/interfaces/resolver.mojom', |
129 'services/package_manager/public/interfaces/shell_resolver.mojom', | |
130 'shell/public/interfaces/connector.mojom', | 129 'shell/public/interfaces/connector.mojom', |
131 'shell/public/interfaces/interface_provider.mojom', | 130 'shell/public/interfaces/interface_provider.mojom', |
132 'shell/public/interfaces/shell.mojom', | 131 'shell/public/interfaces/shell.mojom', |
133 'shell/public/interfaces/shell_client.mojom', | 132 'shell/public/interfaces/shell_client.mojom', |
134 'shell/public/interfaces/shell_client_factory.mojom', | 133 'shell/public/interfaces/shell_client_factory.mojom', |
| 134 'shell/public/interfaces/shell_resolver.mojom', |
135 ], | 135 ], |
136 }, | 136 }, |
137 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], | 137 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], |
138 }, | 138 }, |
139 { | 139 { |
140 # GN version: //mojo/shell/public/cpp | 140 # GN version: //mojo/shell/public/cpp |
141 'target_name': 'mojo_application_base', | 141 'target_name': 'mojo_application_base', |
142 'type': 'static_library', | 142 'type': 'static_library', |
143 'sources': [ | 143 'sources': [ |
144 'shell/public/cpp/application_runner.h', | 144 'shell/public/cpp/application_runner.h', |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 '../build/isolate.gypi', | 330 '../build/isolate.gypi', |
331 ], | 331 ], |
332 'sources': [ | 332 'sources': [ |
333 'mojo_common_unittests.isolate', | 333 'mojo_common_unittests.isolate', |
334 ], | 334 ], |
335 }, | 335 }, |
336 ], | 336 ], |
337 }], | 337 }], |
338 ] | 338 ] |
339 } | 339 } |
OLD | NEW |