| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 'type': 'static_library', | 225 'type': 'static_library', |
| 226 'sources': [ | 226 'sources': [ |
| 227 'shell/public/cpp/application_runner.h', | 227 'shell/public/cpp/application_runner.h', |
| 228 'shell/public/cpp/connect.h', | 228 'shell/public/cpp/connect.h', |
| 229 'shell/public/cpp/connection.h', | 229 'shell/public/cpp/connection.h', |
| 230 'shell/public/cpp/initialize_base_and_icu.cc', | 230 'shell/public/cpp/initialize_base_and_icu.cc', |
| 231 'shell/public/cpp/initialize_base_and_icu.h', | 231 'shell/public/cpp/initialize_base_and_icu.h', |
| 232 'shell/public/cpp/interface_binder.h', | 232 'shell/public/cpp/interface_binder.h', |
| 233 'shell/public/cpp/interface_factory.h', | 233 'shell/public/cpp/interface_factory.h', |
| 234 'shell/public/cpp/interface_factory_impl.h', | 234 'shell/public/cpp/interface_factory_impl.h', |
| 235 'shell/public/cpp/interface_registry.h', |
| 235 'shell/public/cpp/lib/application_runner.cc', | 236 'shell/public/cpp/lib/application_runner.cc', |
| 236 'shell/public/cpp/lib/connection_impl.cc', | 237 'shell/public/cpp/lib/connection_impl.cc', |
| 237 'shell/public/cpp/lib/connection_impl.h', | 238 'shell/public/cpp/lib/connection_impl.h', |
| 238 'shell/public/cpp/lib/interface_factory_binder.h', | 239 'shell/public/cpp/lib/interface_factory_binder.h', |
| 240 'shell/public/cpp/lib/interface_registry.cc', |
| 239 'shell/public/cpp/lib/shell_client.cc', | 241 'shell/public/cpp/lib/shell_client.cc', |
| 240 'shell/public/cpp/lib/shell_connection.cc', | 242 'shell/public/cpp/lib/shell_connection.cc', |
| 241 'shell/public/cpp/shell.h', | 243 'shell/public/cpp/shell.h', |
| 242 'shell/public/cpp/shell_client.h', | 244 'shell/public/cpp/shell_client.h', |
| 243 'shell/public/cpp/shell_connection.h', | 245 'shell/public/cpp/shell_connection.h', |
| 244 ], | 246 ], |
| 245 'dependencies': [ | 247 'dependencies': [ |
| 246 '../base/base.gyp:base_i18n', | 248 '../base/base.gyp:base_i18n', |
| 247 'mojo_application_bindings', | 249 'mojo_application_bindings', |
| 248 'mojo_message_pump_lib', | 250 'mojo_message_pump_lib', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 'type': 'executable', | 283 'type': 'executable', |
| 282 'dependencies': [ | 284 'dependencies': [ |
| 283 '../base/base.gyp:base', | 285 '../base/base.gyp:base', |
| 284 '../testing/gtest.gyp:gtest', | 286 '../testing/gtest.gyp:gtest', |
| 285 'mojo_application_base', | 287 'mojo_application_base', |
| 286 'mojo_edk.gyp:mojo_run_all_unittests', | 288 'mojo_edk.gyp:mojo_run_all_unittests', |
| 287 'mojo_public.gyp:mojo_utility', | 289 'mojo_public.gyp:mojo_utility', |
| 288 'mojo_public.gyp:mojo_environment_standalone', | 290 'mojo_public.gyp:mojo_environment_standalone', |
| 289 ], | 291 ], |
| 290 'sources': [ | 292 'sources': [ |
| 291 'shell/public/cpp/tests/connection_impl_unittest.cc', | 293 'shell/public/cpp/tests/interface_registry_unittest.cc', |
| 292 ], | 294 ], |
| 293 }, | 295 }, |
| 294 ], | 296 ], |
| 295 'conditions': [ | 297 'conditions': [ |
| 296 ['OS=="android"', { | 298 ['OS=="android"', { |
| 297 'targets': [ | 299 'targets': [ |
| 298 { | 300 { |
| 299 'target_name': 'mojo_jni_headers', | 301 'target_name': 'mojo_jni_headers', |
| 300 'type': 'none', | 302 'type': 'none', |
| 301 'dependencies': [ | 303 'dependencies': [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 '../build/isolate.gypi', | 365 '../build/isolate.gypi', |
| 364 ], | 366 ], |
| 365 'sources': [ | 367 'sources': [ |
| 366 'mojo_common_unittests.isolate', | 368 'mojo_common_unittests.isolate', |
| 367 ], | 369 ], |
| 368 }, | 370 }, |
| 369 ], | 371 ], |
| 370 }], | 372 }], |
| 371 ] | 373 ] |
| 372 } | 374 } |
| OLD | NEW |