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 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
713 'mojo_service_manager', | 713 'mojo_service_manager', |
714 'mojo_application', | 714 'mojo_application', |
715 ], | 715 ], |
716 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], | 716 'includes': [ 'public/tools/bindings/mojom_bindings_generator.gypi' ], |
717 'sources': [ | 717 'sources': [ |
718 'service_manager/service_manager_unittest.cc', | 718 'service_manager/service_manager_unittest.cc', |
719 'service_manager/test.mojom', | 719 'service_manager/test.mojom', |
720 ], | 720 ], |
721 }, | 721 }, |
722 { | 722 { |
| 723 # GN version: //mojo/bindings/js |
723 'target_name': 'mojo_js_bindings_lib', | 724 'target_name': 'mojo_js_bindings_lib', |
724 'type': 'static_library', | 725 'type': 'static_library', |
725 'dependencies': [ | 726 'dependencies': [ |
726 '../base/base.gyp:base', | 727 '../base/base.gyp:base', |
727 '../gin/gin.gyp:gin', | 728 '../gin/gin.gyp:gin', |
728 '../v8/tools/gyp/v8.gyp:v8', | 729 '../v8/tools/gyp/v8.gyp:v8', |
729 'mojo_common_lib', | 730 'mojo_common_lib', |
730 ], | 731 ], |
731 'export_dependent_settings': [ | 732 'export_dependent_settings': [ |
732 '../base/base.gyp:base', | 733 '../base/base.gyp:base', |
733 '../gin/gin.gyp:gin', | 734 '../gin/gin.gyp:gin', |
734 'mojo_common_lib', | 735 'mojo_common_lib', |
735 ], | 736 ], |
736 'sources': [ | 737 'sources': [ |
| 738 # Sources list duplicated in GN build. |
737 'bindings/js/core.cc', | 739 'bindings/js/core.cc', |
738 'bindings/js/core.h', | 740 'bindings/js/core.h', |
739 'bindings/js/handle.cc', | 741 'bindings/js/handle.cc', |
740 'bindings/js/handle.h', | 742 'bindings/js/handle.h', |
741 'bindings/js/support.cc', | 743 'bindings/js/support.cc', |
742 'bindings/js/support.h', | 744 'bindings/js/support.h', |
743 'bindings/js/waiting_callback.cc', | 745 'bindings/js/waiting_callback.cc', |
744 'bindings/js/waiting_callback.h', | 746 'bindings/js/waiting_callback.h', |
745 ], | 747 ], |
746 }, | 748 }, |
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1054 'views/views_init_internal.h', | 1056 'views/views_init_internal.h', |
1055 ], | 1057 ], |
1056 'defines': [ | 1058 'defines': [ |
1057 'MOJO_VIEWS_IMPLEMENTATION', | 1059 'MOJO_VIEWS_IMPLEMENTATION', |
1058 ], | 1060 ], |
1059 }, | 1061 }, |
1060 ], | 1062 ], |
1061 }], | 1063 }], |
1062 ], | 1064 ], |
1063 } | 1065 } |
OLD | NEW |