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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'system/memory.cc', | 115 'system/memory.cc', |
116 'system/memory.h', | 116 'system/memory.h', |
117 'system/message_in_transit.cc', | 117 'system/message_in_transit.cc', |
118 'system/message_in_transit.h', | 118 'system/message_in_transit.h', |
119 'system/message_pipe.cc', | 119 'system/message_pipe.cc', |
120 'system/message_pipe.h', | 120 'system/message_pipe.h', |
121 'system/message_pipe_dispatcher.cc', | 121 'system/message_pipe_dispatcher.cc', |
122 'system/message_pipe_dispatcher.h', | 122 'system/message_pipe_dispatcher.h', |
123 'system/message_pipe_endpoint.cc', | 123 'system/message_pipe_endpoint.cc', |
124 'system/message_pipe_endpoint.h', | 124 'system/message_pipe_endpoint.h', |
125 'system/platform_channel.cc', | |
126 'system/platform_channel.h', | |
127 'system/platform_channel_handle.cc', | |
128 'system/platform_channel_handle.h', | |
129 'system/platform_channel_pair.cc', | 125 'system/platform_channel_pair.cc', |
130 'system/platform_channel_pair.h', | 126 'system/platform_channel_pair.h', |
131 'system/platform_channel_pair_posix.cc', | 127 'system/platform_channel_pair_posix.cc', |
| 128 'system/platform_handle.cc', |
| 129 'system/platform_handle.h', |
132 'system/proxy_message_pipe_endpoint.cc', | 130 'system/proxy_message_pipe_endpoint.cc', |
133 'system/proxy_message_pipe_endpoint.h', | 131 'system/proxy_message_pipe_endpoint.h', |
134 'system/raw_channel.h', | 132 'system/raw_channel.h', |
135 'system/raw_channel_posix.cc', | 133 'system/raw_channel_posix.cc', |
136 'system/raw_channel_win.cc', | 134 'system/raw_channel_win.cc', |
| 135 'system/scoped_platform_handle.h', |
137 'system/simple_dispatcher.cc', | 136 'system/simple_dispatcher.cc', |
138 'system/simple_dispatcher.h', | 137 'system/simple_dispatcher.h', |
139 'system/waiter.cc', | 138 'system/waiter.cc', |
140 'system/waiter.h', | 139 'system/waiter.h', |
141 'system/waiter_list.cc', | 140 'system/waiter_list.cc', |
142 'system/waiter_list.h', | 141 'system/waiter_list.h', |
143 ], | 142 ], |
144 }, | 143 }, |
145 { | 144 { |
146 'target_name': 'mojo_system_unittests', | 145 'target_name': 'mojo_system_unittests', |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 474 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
476 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 475 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
477 'native_lib_target': 'libmojo_shell', | 476 'native_lib_target': 'libmojo_shell', |
478 }, | 477 }, |
479 'includes': [ '../build/java_apk.gypi' ], | 478 'includes': [ '../build/java_apk.gypi' ], |
480 } | 479 } |
481 ], | 480 ], |
482 }], | 481 }], |
483 ], | 482 ], |
484 } | 483 } |
OLD | NEW |