OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'includes': [ | 6 'includes': [ |
7 '../third_party/mojo/mojo_variables.gypi', | 7 '../third_party/mojo/mojo_variables.gypi', |
8 ], | 8 ], |
9 'target_defaults' : { | 9 'target_defaults' : { |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 'edk/system/raw_channel_posix.cc', | 106 'edk/system/raw_channel_posix.cc', |
107 'edk/system/raw_channel_win.cc', | 107 'edk/system/raw_channel_win.cc', |
108 'edk/system/routed_raw_channel.cc', | 108 'edk/system/routed_raw_channel.cc', |
109 'edk/system/routed_raw_channel.h', | 109 'edk/system/routed_raw_channel.h', |
110 'edk/system/shared_buffer_dispatcher.cc', | 110 'edk/system/shared_buffer_dispatcher.cc', |
111 'edk/system/shared_buffer_dispatcher.h', | 111 'edk/system/shared_buffer_dispatcher.h', |
112 'edk/system/simple_dispatcher.cc', | 112 'edk/system/simple_dispatcher.cc', |
113 'edk/system/simple_dispatcher.h', | 113 'edk/system/simple_dispatcher.h', |
114 'edk/system/transport_data.cc', | 114 'edk/system/transport_data.cc', |
115 'edk/system/transport_data.h', | 115 'edk/system/transport_data.h', |
| 116 'edk/system/wait_set_dispatcher.cc', |
| 117 'edk/system/wait_set_dispatcher.h', |
116 'edk/system/waiter.cc', | 118 'edk/system/waiter.cc', |
117 'edk/system/waiter.h', | 119 'edk/system/waiter.h', |
118 # Test-only code: | 120 # Test-only code: |
119 # TODO(vtl): It's a little unfortunate that these end up in the same | 121 # TODO(vtl): It's a little unfortunate that these end up in the same |
120 # component as non-test-only code. In the static build, this code | 122 # component as non-test-only code. In the static build, this code |
121 # should hopefully be dead-stripped. | 123 # should hopefully be dead-stripped. |
122 'edk/embedder/test_embedder.cc', | 124 'edk/embedder/test_embedder.cc', |
123 'edk/embedder/test_embedder.h', | 125 'edk/embedder/test_embedder.h', |
124 ], | 126 ], |
125 'all_dependent_settings': { | 127 'all_dependent_settings': { |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 '../third_party/mojo/mojo_public.gyp:mojo_public_test_support', | 226 '../third_party/mojo/mojo_public.gyp:mojo_public_test_support', |
225 'mojo_system_impl2', | 227 'mojo_system_impl2', |
226 'mojo_test_support_impl2', | 228 'mojo_test_support_impl2', |
227 ], | 229 ], |
228 'sources': [ | 230 'sources': [ |
229 'edk/test/run_all_unittests.cc', | 231 'edk/test/run_all_unittests.cc', |
230 ], | 232 ], |
231 }, | 233 }, |
232 ], | 234 ], |
233 } | 235 } |
OLD | NEW |