| 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 '../third_party/mojo/mojo_variables.gypi', | 10 '../third_party/mojo/mojo_variables.gypi', |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 'mojo_services.gyp:network_service_bindings_generation', | 218 'mojo_services.gyp:network_service_bindings_generation', |
| 219 ], | 219 ], |
| 220 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi'
], | 220 'includes': [ '../third_party/mojo/mojom_bindings_generator_explicit.gypi'
], |
| 221 }, | 221 }, |
| 222 { | 222 { |
| 223 # GN version: //mojo/shell/public/cpp | 223 # GN version: //mojo/shell/public/cpp |
| 224 'target_name': 'mojo_application_base', | 224 'target_name': 'mojo_application_base', |
| 225 'type': 'static_library', | 225 'type': 'static_library', |
| 226 'sources': [ | 226 'sources': [ |
| 227 'shell/public/cpp/app_lifetime_helper.h', | 227 'shell/public/cpp/app_lifetime_helper.h', |
| 228 'shell/public/cpp/application_connection.h', | |
| 229 'shell/public/cpp/application_delegate.h', | |
| 230 'shell/public/cpp/application_impl.h', | 228 'shell/public/cpp/application_impl.h', |
| 231 'shell/public/cpp/application_runner.h', | 229 'shell/public/cpp/application_runner.h', |
| 232 'shell/public/cpp/connect.h', | 230 'shell/public/cpp/connect.h', |
| 231 'shell/public/cpp/connection.h', |
| 233 'shell/public/cpp/initialize_base_and_icu.cc', | 232 'shell/public/cpp/initialize_base_and_icu.cc', |
| 234 'shell/public/cpp/initialize_base_and_icu.h', | 233 'shell/public/cpp/initialize_base_and_icu.h', |
| 235 'shell/public/cpp/interface_factory.h', | 234 'shell/public/cpp/interface_factory.h', |
| 236 'shell/public/cpp/interface_factory_impl.h', | 235 'shell/public/cpp/interface_factory_impl.h', |
| 237 'shell/public/cpp/lib/app_lifetime_helper.cc', | 236 'shell/public/cpp/lib/app_lifetime_helper.cc', |
| 238 'shell/public/cpp/lib/application_delegate.cc', | |
| 239 'shell/public/cpp/lib/application_impl.cc', | 237 'shell/public/cpp/lib/application_impl.cc', |
| 240 'shell/public/cpp/lib/application_runner.cc', | 238 'shell/public/cpp/lib/application_runner.cc', |
| 241 'shell/public/cpp/lib/interface_factory_connector.h', | 239 'shell/public/cpp/lib/interface_factory_connector.h', |
| 242 'shell/public/cpp/lib/service_connector_registry.cc', | 240 'shell/public/cpp/lib/service_connector_registry.cc', |
| 243 'shell/public/cpp/lib/service_connector_registry.h', | 241 'shell/public/cpp/lib/service_connector_registry.h', |
| 244 'shell/public/cpp/lib/service_provider_impl.cc', | 242 'shell/public/cpp/lib/service_provider_impl.cc', |
| 245 'shell/public/cpp/lib/service_registry.cc', | 243 'shell/public/cpp/lib/service_registry.cc', |
| 246 'shell/public/cpp/lib/service_registry.h', | 244 'shell/public/cpp/lib/service_registry.h', |
| 247 'shell/public/cpp/shell.h', | 245 'shell/public/cpp/lib/shell_client.cc', |
| 248 'shell/public/cpp/service_connector.h', | 246 'shell/public/cpp/service_connector.h', |
| 249 'shell/public/cpp/service_provider_impl.h', | 247 'shell/public/cpp/service_provider_impl.h', |
| 248 'shell/public/cpp/shell.h', |
| 249 'shell/public/cpp/shell_client.h', |
| 250 ], | 250 ], |
| 251 'dependencies': [ | 251 'dependencies': [ |
| 252 '../base/base.gyp:base_i18n', | 252 '../base/base.gyp:base_i18n', |
| 253 'mojo_application_bindings', | 253 'mojo_application_bindings', |
| 254 'mojo_message_pump_lib', | 254 'mojo_message_pump_lib', |
| 255 'mojo_services.gyp:network_type_converters', | 255 'mojo_services.gyp:network_type_converters', |
| 256 ], | 256 ], |
| 257 }, | 257 }, |
| 258 { | 258 { |
| 259 # GN version: //mojo/public/interfaces/application:application | 259 # GN version: //mojo/public/interfaces/application:application |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 '../build/isolate.gypi', | 369 '../build/isolate.gypi', |
| 370 ], | 370 ], |
| 371 'sources': [ | 371 'sources': [ |
| 372 'mojo_common_unittests.isolate', | 372 'mojo_common_unittests.isolate', |
| 373 ], | 373 ], |
| 374 }, | 374 }, |
| 375 ], | 375 ], |
| 376 }], | 376 }], |
| 377 ] | 377 ] |
| 378 } | 378 } |
| OLD | NEW |