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 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
511 '../build/linux/system.gyp:dbus', | 517 '../build/linux/system.gyp:dbus', |
512 '../dbus/dbus.gyp:dbus', | 518 '../dbus/dbus.gyp:dbus', |
513 ], | 519 ], |
514 }], | 520 }], |
515 ['use_aura==1', { | 521 ['use_aura==1', { |
516 'dependencies': [ | 522 'dependencies': [ |
517 # These are only necessary as long as we hard code use of ViewManage
r. | 523 # These are only necessary as long as we hard code use of ViewManage
r. |
518 '../skia/skia.gyp:skia', | 524 '../skia/skia.gyp:skia', |
519 'mojo_shell_client', | 525 'mojo_shell_client', |
520 'mojo_view_manager', | 526 'mojo_view_manager', |
| 527 'mojo_view_manager_bindings', |
521 ], | 528 ], |
522 }], | 529 }], |
523 ], | 530 ], |
524 }, | 531 }, |
525 { | 532 { |
526 'target_name': 'mojo_shell_test_support', | 533 'target_name': 'mojo_shell_test_support', |
527 'type': 'static_library', | 534 'type': 'static_library', |
528 'dependencies': [ | 535 'dependencies': [ |
529 '../base/base.gyp:base', | 536 '../base/base.gyp:base', |
530 '../base/base.gyp:base_static', | 537 '../base/base.gyp:base_static', |
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
860 'aura/screen_mojo.cc', | 867 'aura/screen_mojo.cc', |
861 'aura/screen_mojo.h', | 868 'aura/screen_mojo.h', |
862 'aura/window_tree_host_mojo.cc', | 869 'aura/window_tree_host_mojo.cc', |
863 'aura/window_tree_host_mojo.h', | 870 'aura/window_tree_host_mojo.h', |
864 ], | 871 ], |
865 }, | 872 }, |
866 ], | 873 ], |
867 }], | 874 }], |
868 ], | 875 ], |
869 } | 876 } |
OLD | NEW |