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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 'spy/spy.cc', | 431 'spy/spy.cc', |
432 'spy/spy.h', | 432 'spy/spy.h', |
433 ], | 433 ], |
434 }, | 434 }, |
435 { | 435 { |
436 'target_name': 'mojo_shell_lib', | 436 'target_name': 'mojo_shell_lib', |
437 'type': 'static_library', | 437 'type': 'static_library', |
438 'dependencies': [ | 438 'dependencies': [ |
439 '../base/base.gyp:base', | 439 '../base/base.gyp:base', |
440 '../base/base.gyp:base_static', | 440 '../base/base.gyp:base_static', |
| 441 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
441 '../net/net.gyp:net', | 442 '../net/net.gyp:net', |
442 '../url/url.gyp:url_lib', | 443 '../url/url.gyp:url_lib', |
443 'mojo_external_service_bindings', | 444 'mojo_external_service_bindings', |
444 'mojo_gles2_impl', | 445 'mojo_gles2_impl', |
445 'mojo_service_manager', | 446 'mojo_service_manager', |
446 'mojo_shell_bindings', | 447 'mojo_shell_bindings', |
447 'mojo_system_impl', | 448 'mojo_system_impl', |
448 'mojo_native_viewport_service', | 449 'mojo_native_viewport_service', |
449 'mojo_spy', | 450 'mojo_spy', |
450 ], | 451 ], |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 'shell/url_request_context_getter.cc', | 495 'shell/url_request_context_getter.cc', |
495 'shell/url_request_context_getter.h', | 496 'shell/url_request_context_getter.h', |
496 ], | 497 ], |
497 'conditions': [ | 498 'conditions': [ |
498 ['OS=="linux"', { | 499 ['OS=="linux"', { |
499 'dependencies': [ | 500 'dependencies': [ |
500 '../build/linux/system.gyp:dbus', | 501 '../build/linux/system.gyp:dbus', |
501 '../dbus/dbus.gyp:dbus', | 502 '../dbus/dbus.gyp:dbus', |
502 ], | 503 ], |
503 }], | 504 }], |
| 505 ['use_aura==1', { |
| 506 'dependencies': [ |
| 507 # These are only necessary as long as we hard code use of ViewManage
r. |
| 508 '../skia/skia.gyp:skia', |
| 509 'mojo_shell_client', |
| 510 'mojo_view_manager', |
| 511 ], |
| 512 }], |
504 ], | 513 ], |
505 }, | 514 }, |
506 { | 515 { |
| 516 'target_name': 'mojo_shell_test_support', |
| 517 'type': 'static_library', |
| 518 'dependencies': [ |
| 519 '../base/base.gyp:base', |
| 520 '../base/base.gyp:base_static', |
| 521 '../url/url.gyp:url_lib', |
| 522 'mojo_service_manager', |
| 523 'mojo_shell_lib', |
| 524 'mojo_system_impl', |
| 525 ], |
| 526 'sources': [ |
| 527 'shell/shell_test_helper.cc', |
| 528 'shell/shell_test_helper.h', |
| 529 ], |
| 530 }, |
| 531 { |
507 'target_name': 'mojo_shell', | 532 'target_name': 'mojo_shell', |
508 'type': 'executable', | 533 'type': 'executable', |
509 'dependencies': [ | 534 'dependencies': [ |
510 '../base/base.gyp:base', | 535 '../base/base.gyp:base', |
511 '../ui/gl/gl.gyp:gl', | 536 '../ui/gl/gl.gyp:gl', |
512 '../url/url.gyp:url_lib', | 537 '../url/url.gyp:url_lib', |
513 'mojo_common_lib', | 538 'mojo_common_lib', |
514 'mojo_environment_chromium', | 539 'mojo_environment_chromium', |
515 'mojo_service_manager', | 540 'mojo_service_manager', |
516 'mojo_shell_lib', | 541 'mojo_shell_lib', |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
754 'mojo_js_unittests.isolate', | 779 'mojo_js_unittests.isolate', |
755 ], | 780 ], |
756 'sources': [ | 781 'sources': [ |
757 'mojo_js_unittests.isolate', | 782 'mojo_js_unittests.isolate', |
758 ], | 783 ], |
759 }, | 784 }, |
760 ], | 785 ], |
761 }], | 786 }], |
762 ], | 787 ], |
763 } | 788 } |
OLD | NEW |