| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 '../base/base.gyp:base_static', | 371 '../base/base.gyp:base_static', |
| 372 '../net/net.gyp:net', | 372 '../net/net.gyp:net', |
| 373 '../url/url.gyp:url_lib', | 373 '../url/url.gyp:url_lib', |
| 374 'mojo_gles2_impl', | 374 'mojo_gles2_impl', |
| 375 'mojo_shell_bindings', | 375 'mojo_shell_bindings', |
| 376 'mojo_service_manager', | 376 'mojo_service_manager', |
| 377 'mojo_system', | 377 'mojo_system', |
| 378 'mojo_system_impl', | 378 'mojo_system_impl', |
| 379 'mojo_native_viewport_service', | 379 'mojo_native_viewport_service', |
| 380 ], | 380 ], |
| 381 'variables': { |
| 382 'mojom_base_output_dir': 'mojo', |
| 383 }, |
| 381 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 384 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 382 'sources': [ | 385 'sources': [ |
| 383 'shell/app_child_process.cc', | 386 'shell/app_child_process.cc', |
| 384 'shell/app_child_process.h', | 387 'shell/app_child_process.h', |
| 385 'shell/app_child_process.mojom', | 388 'shell/app_child_process.mojom', |
| 386 'shell/app_child_process_host.cc', | 389 'shell/app_child_process_host.cc', |
| 387 'shell/app_child_process_host.h', | 390 'shell/app_child_process_host.h', |
| 388 'shell/child_process.cc', | 391 'shell/child_process.cc', |
| 389 'shell/child_process.h', | 392 'shell/child_process.h', |
| 390 'shell/child_process_host.cc', | 393 'shell/child_process_host.cc', |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 'dependencies': [ | 447 'dependencies': [ |
| 445 '../base/base.gyp:base', | 448 '../base/base.gyp:base', |
| 446 '../testing/gtest.gyp:gtest', | 449 '../testing/gtest.gyp:gtest', |
| 447 'mojo_bindings', | 450 'mojo_bindings', |
| 448 'mojo_environment_standalone', | 451 'mojo_environment_standalone', |
| 449 'mojo_run_all_unittests', | 452 'mojo_run_all_unittests', |
| 450 'mojo_service_manager', | 453 'mojo_service_manager', |
| 451 'mojo_system', | 454 'mojo_system', |
| 452 'mojo_utility', | 455 'mojo_utility', |
| 453 ], | 456 ], |
| 457 'variables': { |
| 458 'mojom_base_output_dir': 'mojo', |
| 459 }, |
| 454 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 460 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
| 455 'sources': [ | 461 'sources': [ |
| 456 'service_manager/service_manager_unittest.cc', | 462 'service_manager/service_manager_unittest.cc', |
| 457 'service_manager/test.mojom', | 463 'service_manager/test.mojom', |
| 458 ], | 464 ], |
| 459 }, | 465 }, |
| 460 { | 466 { |
| 461 'target_name': 'mojo_js_bindings_lib', | 467 'target_name': 'mojo_js_bindings_lib', |
| 462 'type': 'static_library', | 468 'type': 'static_library', |
| 463 'dependencies': [ | 469 'dependencies': [ |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 'mojo_js_unittests.isolate', | 597 'mojo_js_unittests.isolate', |
| 592 ], | 598 ], |
| 593 'sources': [ | 599 'sources': [ |
| 594 'mojo_js_unittests.isolate', | 600 'mojo_js_unittests.isolate', |
| 595 ], | 601 ], |
| 596 }, | 602 }, |
| 597 ], | 603 ], |
| 598 }], | 604 }], |
| 599 ], | 605 ], |
| 600 } | 606 } |
| OLD | NEW |