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', | 748 'target_name': 'mojo_js_unittests', |
yzshen1
2014/07/23 07:26:55
shall we move this target into mojo_public_tests.g
hansmuller
2014/07/23 18:06:35
Done.
| |
749 'type': 'executable', | 749 'type': 'executable', |
750 'dependencies': [ | 750 'dependencies': [ |
751 '../gin/gin.gyp:gin_test', | 751 '../gin/gin.gyp:gin_test', |
752 'mojo_common_test_support', | 752 'mojo_common_test_support', |
753 'mojo_js_bindings_lib', | 753 'mojo_js_bindings_lib', |
754 'mojo_run_all_unittests', | 754 'mojo_run_all_unittests', |
755 'mojo_public_test_interfaces', | 755 'mojo_public_test_interfaces', |
756 ], | 756 ], |
757 'sources': [ | 757 'sources': [ |
758 'bindings/js/run_js_tests.cc', | 758 'public/js/bindings/tests/run_js_tests.cc', |
759 ], | 759 ], |
760 }, | 760 }, |
761 { | 761 { |
762 'target_name': 'mojo_message_generator', | 762 'target_name': 'mojo_message_generator', |
763 'type': 'executable', | 763 'type': 'executable', |
764 'dependencies': [ | 764 'dependencies': [ |
765 '../base/base.gyp:base', | 765 '../base/base.gyp:base', |
766 '../testing/gtest.gyp:gtest', | 766 '../testing/gtest.gyp:gtest', |
767 'mojo_common_lib', | 767 'mojo_common_lib', |
768 'mojo_cpp_bindings', | 768 'mojo_cpp_bindings', |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1065 'views/views_init_internal.h', | 1065 'views/views_init_internal.h', |
1066 ], | 1066 ], |
1067 'defines': [ | 1067 'defines': [ |
1068 'MOJO_VIEWS_IMPLEMENTATION', | 1068 'MOJO_VIEWS_IMPLEMENTATION', |
1069 ], | 1069 ], |
1070 }, | 1070 }, |
1071 ], | 1071 ], |
1072 }], | 1072 }], |
1073 ], | 1073 ], |
1074 } | 1074 } |
OLD | NEW |