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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 'defines': [ | 71 'defines': [ |
72 'MOJO_SYSTEM_IMPLEMENTATION', | 72 'MOJO_SYSTEM_IMPLEMENTATION', |
73 ], | 73 ], |
74 'sources': [ | 74 'sources': [ |
75 'system/core.cc', | 75 'system/core.cc', |
76 'system/core_impl.cc', | 76 'system/core_impl.cc', |
77 'system/core_impl.h', | 77 'system/core_impl.h', |
78 'system/dispatcher.cc', | 78 'system/dispatcher.cc', |
79 'system/dispatcher.h', | 79 'system/dispatcher.h', |
80 'system/limits.h', | 80 'system/limits.h', |
| 81 'system/local_message_pipe_endpoint.cc', |
| 82 'system/local_message_pipe_endpoint.h', |
81 'system/memory.cc', | 83 'system/memory.cc', |
82 'system/memory.h', | 84 'system/memory.h', |
83 'system/message_in_transit.cc', | 85 'system/message_in_transit.cc', |
84 'system/message_in_transit.h', | 86 'system/message_in_transit.h', |
85 'system/message_pipe.cc', | 87 'system/message_pipe.cc', |
86 'system/message_pipe.h', | 88 'system/message_pipe.h', |
87 'system/message_pipe_dispatcher.cc', | 89 'system/message_pipe_dispatcher.cc', |
88 'system/message_pipe_dispatcher.h', | 90 'system/message_pipe_dispatcher.h', |
| 91 'system/message_pipe_endpoint.cc', |
| 92 'system/message_pipe_endpoint.h', |
89 'system/platform_channel_handle.h', | 93 'system/platform_channel_handle.h', |
90 'system/raw_channel.h', | 94 'system/raw_channel.h', |
91 'system/raw_channel_posix.cc', | 95 'system/raw_channel_posix.cc', |
92 'system/simple_dispatcher.cc', | 96 'system/simple_dispatcher.cc', |
93 'system/simple_dispatcher.h', | 97 'system/simple_dispatcher.h', |
94 'system/waiter.cc', | 98 'system/waiter.cc', |
95 'system/waiter.h', | 99 'system/waiter.h', |
96 'system/waiter_list.cc', | 100 'system/waiter_list.cc', |
97 'system/waiter_list.h', | 101 'system/waiter_list.h', |
98 ], | 102 ], |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
191 'sources': [ | 195 'sources': [ |
192 'public/bindings/sample/generated/sample_service.h', | 196 'public/bindings/sample/generated/sample_service.h', |
193 'public/bindings/sample/generated/sample_service_proxy.cc', | 197 'public/bindings/sample/generated/sample_service_proxy.cc', |
194 'public/bindings/sample/generated/sample_service_serialization.h', | 198 'public/bindings/sample/generated/sample_service_serialization.h', |
195 'public/bindings/sample/generated/sample_service_stub.cc', | 199 'public/bindings/sample/generated/sample_service_stub.cc', |
196 'public/bindings/sample/sample_test.cc', | 200 'public/bindings/sample/sample_test.cc', |
197 ], | 201 ], |
198 }, | 202 }, |
199 ], | 203 ], |
200 } | 204 } |
OLD | NEW |