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 727 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
738 'bindings/js/core.h', | 738 'bindings/js/core.h', |
739 'bindings/js/handle.cc', | 739 'bindings/js/handle.cc', |
740 'bindings/js/handle.h', | 740 'bindings/js/handle.h', |
741 'bindings/js/support.cc', | 741 'bindings/js/support.cc', |
742 'bindings/js/support.h', | 742 'bindings/js/support.h', |
743 'bindings/js/waiting_callback.cc', | 743 'bindings/js/waiting_callback.cc', |
744 'bindings/js/waiting_callback.h', | 744 'bindings/js/waiting_callback.h', |
745 ], | 745 ], |
746 }, | 746 }, |
747 { | 747 { |
748 'target_name': 'mojo_js_unittests', | |
749 'type': 'executable', | |
750 'dependencies': [ | |
751 '../gin/gin.gyp:gin_test', | |
752 'mojo_common_test_support', | |
753 'mojo_js_bindings_lib', | |
754 'mojo_run_all_unittests', | |
755 'mojo_public_test_interfaces', | |
756 ], | |
757 'sources': [ | |
758 'bindings/js/run_js_tests.cc', | |
759 ], | |
760 }, | |
761 { | |
762 'target_name': 'mojo_message_generator', | 748 'target_name': 'mojo_message_generator', |
763 'type': 'executable', | 749 'type': 'executable', |
764 'dependencies': [ | 750 'dependencies': [ |
765 '../base/base.gyp:base', | 751 '../base/base.gyp:base', |
766 '../testing/gtest.gyp:gtest', | 752 '../testing/gtest.gyp:gtest', |
767 'mojo_common_lib', | 753 'mojo_common_lib', |
768 'mojo_cpp_bindings', | 754 'mojo_cpp_bindings', |
769 'mojo_environment_chromium', | 755 'mojo_environment_chromium', |
770 'mojo_system_impl', | 756 'mojo_system_impl', |
771 ], | 757 ], |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 'views/views_init_internal.h', | 1051 'views/views_init_internal.h', |
1066 ], | 1052 ], |
1067 'defines': [ | 1053 'defines': [ |
1068 'MOJO_VIEWS_IMPLEMENTATION', | 1054 'MOJO_VIEWS_IMPLEMENTATION', |
1069 ], | 1055 ], |
1070 }, | 1056 }, |
1071 ], | 1057 ], |
1072 }], | 1058 }], |
1073 ], | 1059 ], |
1074 } | 1060 } |
OLD | NEW |