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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'mojo_service_manager', | 56 'mojo_service_manager', |
57 'mojo_service_manager_unittests', | 57 'mojo_service_manager_unittests', |
58 'mojo_shell', | 58 'mojo_shell', |
59 'mojo_shell_lib', | 59 'mojo_shell_lib', |
60 'mojo_shell_tests', | 60 'mojo_shell_tests', |
61 'mojo_surfaces_lib', | 61 'mojo_surfaces_lib', |
62 'mojo_surfaces_lib_unittests', | 62 'mojo_surfaces_lib_unittests', |
63 'mojo_system', | 63 'mojo_system', |
64 'mojo_system_impl', | 64 'mojo_system_impl', |
65 'mojo_system_unittests', | 65 'mojo_system_unittests', |
66 'mojo_test_service', | 66 'mojo_test_app', |
| 67 'mojo_test_request_tracker_app', |
67 'mojo_utility', | 68 'mojo_utility', |
68 'mojo_view_manager_lib', | 69 'mojo_view_manager_lib', |
69 'mojo_view_manager_lib_unittests', | 70 'mojo_view_manager_lib_unittests', |
70 'mojo_wget', | 71 'mojo_wget', |
71 ], | 72 ], |
72 'conditions': [ | 73 'conditions': [ |
73 ['use_aura==1', { | 74 ['use_aura==1', { |
74 'dependencies': [ | 75 'dependencies': [ |
75 'mojo_aura_demo', | 76 'mojo_aura_demo', |
76 'mojo_aura_demo_init', | 77 'mojo_aura_demo_init', |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 ], | 604 ], |
604 'sources': [ | 605 'sources': [ |
605 'shell/desktop/mojo_main.cc', | 606 'shell/desktop/mojo_main.cc', |
606 ], | 607 ], |
607 }, | 608 }, |
608 { | 609 { |
609 'target_name': 'mojo_shell_tests', | 610 'target_name': 'mojo_shell_tests', |
610 'type': '<(gtest_target_type)', | 611 'type': '<(gtest_target_type)', |
611 'dependencies': [ | 612 'dependencies': [ |
612 '../base/base.gyp:base', | 613 '../base/base.gyp:base', |
| 614 '../base/base.gyp:base_i18n', |
613 '../base/base.gyp:test_support_base', | 615 '../base/base.gyp:test_support_base', |
614 '../testing/gtest.gyp:gtest', | 616 '../testing/gtest.gyp:gtest', |
615 # TODO(vtl): We don't currently need this, but I imagine we will soon. | 617 # TODO(vtl): We don't currently need this, but I imagine we will soon. |
616 # '../ui/gl/gl.gyp:gl', | 618 # '../ui/gl/gl.gyp:gl', |
617 '../url/url.gyp:url_lib', | 619 '../url/url.gyp:url_lib', |
618 'mojo_common_lib', | 620 'mojo_common_lib', |
619 'mojo_environment_chromium', | 621 'mojo_environment_chromium', |
620 'mojo_service_manager', | 622 'mojo_service_manager', |
621 'mojo_shell_lib', | 623 'mojo_shell_lib', |
622 'mojo_system_impl', | 624 'mojo_system_impl', |
623 'mojo_test_service', | 625 'mojo_test_app', |
| 626 'mojo_test_request_tracker_app', |
624 'mojo_test_service_bindings', | 627 'mojo_test_service_bindings', |
625 ], | 628 ], |
626 'sources': [ | 629 'sources': [ |
627 'shell/child_process_host_unittest.cc', | 630 'shell/child_process_host_unittest.cc', |
628 'shell/shell_test_base.cc', | 631 'shell/shell_test_base.cc', |
629 'shell/shell_test_base.h', | 632 'shell/shell_test_base.h', |
630 'shell/shell_test_base_unittest.cc', | 633 'shell/shell_test_base_unittest.cc', |
631 'shell/shell_test_main.cc', | 634 'shell/shell_test_main.cc', |
632 ], | 635 ], |
633 'conditions': [ | 636 'conditions': [ |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
993 'views/views_init_internal.h', | 996 'views/views_init_internal.h', |
994 ], | 997 ], |
995 'defines': [ | 998 'defines': [ |
996 'MOJO_VIEWS_IMPLEMENTATION', | 999 'MOJO_VIEWS_IMPLEMENTATION', |
997 ], | 1000 ], |
998 }, | 1001 }, |
999 ], | 1002 ], |
1000 }], | 1003 }], |
1001 ], | 1004 ], |
1002 } | 1005 } |
OLD | NEW |