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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ], | 68 ], |
69 }], | 69 }], |
70 ['OS == "android"', { | 70 ['OS == "android"', { |
71 'dependencies': [ | 71 'dependencies': [ |
72 'mojo_public_java', | 72 'mojo_public_java', |
73 'mojo_system_java', | 73 'mojo_system_java', |
74 'libmojo_system_java', | 74 'libmojo_system_java', |
75 'mojo_test_apk', | 75 'mojo_test_apk', |
76 ], | 76 ], |
77 }], | 77 }], |
| 78 ['OS == "linux"', { |
| 79 'dependencies': [ |
| 80 'mojo_dbus_echo', |
| 81 'mojo_dbus_echo_service', |
| 82 ], |
| 83 }], |
78 ] | 84 ] |
79 }, | 85 }, |
80 { | 86 { |
81 'target_name': 'mojo_external_service_bindings', | 87 'target_name': 'mojo_external_service_bindings', |
82 'type': 'static_library', | 88 'type': 'static_library', |
83 'sources': [ | 89 'sources': [ |
84 'shell/external_service.mojom', | 90 'shell/external_service.mojom', |
85 ], | 91 ], |
86 'variables': { | 92 'variables': { |
87 'mojom_base_output_dir': 'mojo', | 93 'mojom_base_output_dir': 'mojo', |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 '../dbus/dbus.gyp:dbus', | 520 '../dbus/dbus.gyp:dbus', |
515 ], | 521 ], |
516 }], | 522 }], |
517 ['use_aura==1', { | 523 ['use_aura==1', { |
518 'dependencies': [ | 524 'dependencies': [ |
519 # These are only necessary as long as we hard code use of ViewManage
r. | 525 # These are only necessary as long as we hard code use of ViewManage
r. |
520 '../skia/skia.gyp:skia', | 526 '../skia/skia.gyp:skia', |
521 'mojo_gles2', | 527 'mojo_gles2', |
522 'mojo_shell_client', | 528 'mojo_shell_client', |
523 'mojo_view_manager', | 529 'mojo_view_manager', |
| 530 'mojo_view_manager_bindings', |
524 ], | 531 ], |
525 }, { # use_aura==0 | 532 }, { # use_aura==0 |
526 'sources!': [ | 533 'sources!': [ |
527 'shell/view_manager_loader.cc', | 534 'shell/view_manager_loader.cc', |
528 'shell/view_manager_loader.h', | 535 'shell/view_manager_loader.h', |
529 ], | 536 ], |
530 }], | 537 }], |
531 ], | 538 ], |
532 }, | 539 }, |
533 { | 540 { |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
868 'aura/screen_mojo.cc', | 875 'aura/screen_mojo.cc', |
869 'aura/screen_mojo.h', | 876 'aura/screen_mojo.h', |
870 'aura/window_tree_host_mojo.cc', | 877 'aura/window_tree_host_mojo.cc', |
871 'aura/window_tree_host_mojo.h', | 878 'aura/window_tree_host_mojo.h', |
872 ], | 879 ], |
873 }, | 880 }, |
874 ], | 881 ], |
875 }], | 882 }], |
876 ], | 883 ], |
877 } | 884 } |
OLD | NEW |