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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_runner.h', | 228 'shell/public/cpp/application_runner.h', |
229 'shell/public/cpp/connect.h', | 229 'shell/public/cpp/connect.h', |
230 'shell/public/cpp/connection.h', | 230 'shell/public/cpp/connection.h', |
231 'shell/public/cpp/initialize_base_and_icu.cc', | 231 'shell/public/cpp/initialize_base_and_icu.cc', |
232 'shell/public/cpp/initialize_base_and_icu.h', | 232 'shell/public/cpp/initialize_base_and_icu.h', |
| 233 'shell/public/cpp/interface_binder.h', |
233 'shell/public/cpp/interface_factory.h', | 234 'shell/public/cpp/interface_factory.h', |
234 'shell/public/cpp/interface_factory_impl.h', | 235 'shell/public/cpp/interface_factory_impl.h', |
235 'shell/public/cpp/lib/app_lifetime_helper.cc', | 236 'shell/public/cpp/lib/app_lifetime_helper.cc', |
236 'shell/public/cpp/lib/application_runner.cc', | 237 'shell/public/cpp/lib/application_runner.cc', |
237 'shell/public/cpp/lib/connection_impl.cc', | 238 'shell/public/cpp/lib/connection_impl.cc', |
238 'shell/public/cpp/lib/connection_impl.h', | 239 'shell/public/cpp/lib/connection_impl.h', |
239 'shell/public/cpp/lib/interface_factory_connector.h', | 240 'shell/public/cpp/lib/interface_factory_binder.h', |
240 'shell/public/cpp/lib/shell_client.cc', | 241 'shell/public/cpp/lib/shell_client.cc', |
241 'shell/public/cpp/lib/shell_connection.cc', | 242 'shell/public/cpp/lib/shell_connection.cc', |
242 'shell/public/cpp/service_connector.h', | |
243 'shell/public/cpp/shell.h', | 243 'shell/public/cpp/shell.h', |
244 'shell/public/cpp/shell_client.h', | 244 'shell/public/cpp/shell_client.h', |
245 'shell/public/cpp/shell_connection.h', | 245 'shell/public/cpp/shell_connection.h', |
246 ], | 246 ], |
247 'dependencies': [ | 247 'dependencies': [ |
248 '../base/base.gyp:base_i18n', | 248 '../base/base.gyp:base_i18n', |
249 'mojo_application_bindings', | 249 'mojo_application_bindings', |
250 'mojo_message_pump_lib', | 250 'mojo_message_pump_lib', |
251 'mojo_services.gyp:network_type_converters', | 251 'mojo_services.gyp:network_type_converters', |
252 ], | 252 ], |
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 '../build/isolate.gypi', | 365 '../build/isolate.gypi', |
366 ], | 366 ], |
367 'sources': [ | 367 'sources': [ |
368 'mojo_common_unittests.isolate', | 368 'mojo_common_unittests.isolate', |
369 ], | 369 ], |
370 }, | 370 }, |
371 ], | 371 ], |
372 }], | 372 }], |
373 ] | 373 ] |
374 } | 374 } |
OLD | NEW |