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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 'shell/public/cpp/interface_factory.h', | 206 'shell/public/cpp/interface_factory.h', |
207 'shell/public/cpp/interface_factory_impl.h', | 207 'shell/public/cpp/interface_factory_impl.h', |
208 'shell/public/cpp/interface_registry.h', | 208 'shell/public/cpp/interface_registry.h', |
209 'shell/public/cpp/lib/application_runner.cc', | 209 'shell/public/cpp/lib/application_runner.cc', |
210 'shell/public/cpp/lib/connection_impl.cc', | 210 'shell/public/cpp/lib/connection_impl.cc', |
211 'shell/public/cpp/lib/connection_impl.h', | 211 'shell/public/cpp/lib/connection_impl.h', |
212 'shell/public/cpp/lib/connector_impl.cc', | 212 'shell/public/cpp/lib/connector_impl.cc', |
213 'shell/public/cpp/lib/connector_impl.h', | 213 'shell/public/cpp/lib/connector_impl.h', |
214 'shell/public/cpp/lib/interface_factory_binder.h', | 214 'shell/public/cpp/lib/interface_factory_binder.h', |
215 'shell/public/cpp/lib/interface_registry.cc', | 215 'shell/public/cpp/lib/interface_registry.cc', |
| 216 'shell/public/cpp/lib/message_loop_ref.cc', |
| 217 'shell/public/cpp/lib/names.cc', |
216 'shell/public/cpp/lib/shell_client.cc', | 218 'shell/public/cpp/lib/shell_client.cc', |
217 'shell/public/cpp/lib/shell_connection.cc', | 219 'shell/public/cpp/lib/shell_connection.cc', |
| 220 'shell/public/cpp/message_loop_ref.h', |
| 221 'shell/public/cpp/names.h', |
218 'shell/public/cpp/shell.h', | 222 'shell/public/cpp/shell.h', |
219 'shell/public/cpp/shell_client.h', | 223 'shell/public/cpp/shell_client.h', |
220 'shell/public/cpp/shell_connection.h', | 224 'shell/public/cpp/shell_connection.h', |
221 ], | 225 ], |
222 'dependencies': [ | 226 'dependencies': [ |
223 '../base/base.gyp:base_i18n', | 227 '../base/base.gyp:base_i18n', |
224 'mojo_application_bindings', | 228 'mojo_application_bindings', |
225 'mojo_public.gyp:mojo_message_pump_lib', | 229 'mojo_public.gyp:mojo_message_pump_lib', |
226 'mojo_services.gyp:network_type_converters', | 230 'mojo_services.gyp:network_type_converters', |
227 ], | 231 ], |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 '../build/isolate.gypi', | 344 '../build/isolate.gypi', |
341 ], | 345 ], |
342 'sources': [ | 346 'sources': [ |
343 'mojo_common_unittests.isolate', | 347 'mojo_common_unittests.isolate', |
344 ], | 348 ], |
345 }, | 349 }, |
346 ], | 350 ], |
347 }], | 351 }], |
348 ] | 352 ] |
349 } | 353 } |
OLD | NEW |