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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'defines': ['MOJO_IMPLEMENTATION'], | 10 'defines': ['MOJO_IMPLEMENTATION'], |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 ], | 62 ], |
63 }, | 63 }, |
64 { | 64 { |
65 'target_name': 'mojo_system', | 65 'target_name': 'mojo_system', |
66 # TODO(vtl): This should probably be '<(component)'; make it work. | 66 # TODO(vtl): This should probably be '<(component)'; make it work. |
67 'type': 'static_library', | 67 'type': 'static_library', |
68 'dependencies': [ | 68 'dependencies': [ |
69 '../base/base.gyp:base', | 69 '../base/base.gyp:base', |
70 ], | 70 ], |
71 'sources': [ | 71 'sources': [ |
72 'public/system/core.h', | |
73 'system/core.cc', | 72 'system/core.cc', |
74 'system/core_impl.cc', | 73 'system/core_impl.cc', |
75 'system/core_impl.h', | 74 'system/core_impl.h', |
76 'system/dispatcher.cc', | 75 'system/dispatcher.cc', |
77 'system/dispatcher.h', | 76 'system/dispatcher.h', |
78 'system/limits.h', | 77 'system/limits.h', |
79 'system/memory.cc', | 78 'system/memory.cc', |
80 'system/memory.h', | 79 'system/memory.h', |
81 'system/message_in_transit.cc', | 80 'system/message_in_transit.cc', |
82 'system/message_in_transit.h', | 81 'system/message_in_transit.h', |
(...skipping 30 matching lines...) Expand all Loading... |
113 'system/message_pipe_dispatcher_unittest.cc', | 112 'system/message_pipe_dispatcher_unittest.cc', |
114 'system/message_pipe_unittest.cc', | 113 'system/message_pipe_unittest.cc', |
115 'system/simple_dispatcher_unittest.cc', | 114 'system/simple_dispatcher_unittest.cc', |
116 'system/test_utils.h', | 115 'system/test_utils.h', |
117 'system/waiter_list_unittest.cc', | 116 'system/waiter_list_unittest.cc', |
118 'system/waiter_test_utils.cc', | 117 'system/waiter_test_utils.cc', |
119 'system/waiter_test_utils.h', | 118 'system/waiter_test_utils.h', |
120 'system/waiter_unittest.cc', | 119 'system/waiter_unittest.cc', |
121 ], | 120 ], |
122 }, | 121 }, |
| 122 { |
| 123 'target_name': 'mojo_bindings', |
| 124 'type': 'static_library', |
| 125 'include_dirs': [ |
| 126 '..' |
| 127 ], |
| 128 'sources': [ |
| 129 'public/bindings/lib/bindings.h', |
| 130 'public/bindings/lib/bindings_internal.cc', |
| 131 'public/bindings/lib/bindings_internal.h', |
| 132 'public/bindings/lib/buffer.cc', |
| 133 'public/bindings/lib/buffer.h', |
| 134 'public/bindings/lib/message.cc', |
| 135 'public/bindings/lib/message.h', |
| 136 'public/bindings/lib/message_builder.cc', |
| 137 'public/bindings/lib/message_builder.h', |
| 138 ], |
| 139 }, |
| 140 { |
| 141 'target_name': 'mojo_bindings_test', |
| 142 'type': 'executable', |
| 143 'include_dirs': [ |
| 144 '..' |
| 145 ], |
| 146 'dependencies': [ |
| 147 'mojo_bindings', |
| 148 ], |
| 149 'sources': [ |
| 150 'public/bindings/sample/generated/sample_service_proxy.cc', |
| 151 'public/bindings/sample/generated/sample_service_stub.cc', |
| 152 'public/bindings/sample/sample_test.cc', |
| 153 ], |
| 154 }, |
123 ], | 155 ], |
124 } | 156 } |
OLD | NEW |