OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("../mojo_edk.gni") | 5 import("../mojo_edk.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 if (is_android) { | 8 if (is_android) { |
9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "dispatcher.cc", | 46 "dispatcher.cc", |
47 "dispatcher.h", | 47 "dispatcher.h", |
48 "endpoint_relayer.cc", | 48 "endpoint_relayer.cc", |
49 "endpoint_relayer.h", | 49 "endpoint_relayer.h", |
50 "entrypoint_class.h", | 50 "entrypoint_class.h", |
51 "handle.cc", | 51 "handle.cc", |
52 "handle.h", | 52 "handle.h", |
53 "handle_signals_state.h", | 53 "handle_signals_state.h", |
54 "handle_table.cc", | 54 "handle_table.cc", |
55 "handle_table.h", | 55 "handle_table.h", |
| 56 "handle_transport.cc", |
| 57 "handle_transport.h", |
56 "incoming_endpoint.cc", | 58 "incoming_endpoint.cc", |
57 "incoming_endpoint.h", | 59 "incoming_endpoint.h", |
58 "ipc_support.cc", | 60 "ipc_support.cc", |
59 "ipc_support.h", | 61 "ipc_support.h", |
60 "local_data_pipe_impl.cc", | 62 "local_data_pipe_impl.cc", |
61 "local_data_pipe_impl.h", | 63 "local_data_pipe_impl.h", |
62 "local_message_pipe_endpoint.cc", | 64 "local_message_pipe_endpoint.cc", |
63 "local_message_pipe_endpoint.h", | 65 "local_message_pipe_endpoint.h", |
64 "mapping_table.cc", | 66 "mapping_table.cc", |
65 "mapping_table.h", | 67 "mapping_table.h", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 # TODO(vtl): Add separate test targets for this. | 209 # TODO(vtl): Add separate test targets for this. |
208 "mojo/edk/util:perftests", | 210 "mojo/edk/util:perftests", |
209 | 211 |
210 "mojo/edk/base_edk", | 212 "mojo/edk/base_edk", |
211 "mojo/edk/base_edk:test_base_edk", | 213 "mojo/edk/base_edk:test_base_edk", |
212 "mojo/edk/system/test", | 214 "mojo/edk/system/test", |
213 "mojo/edk/system/test:perf", | 215 "mojo/edk/system/test:perf", |
214 "mojo/edk/test:test_support", | 216 "mojo/edk/test:test_support", |
215 ] | 217 ] |
216 } | 218 } |
OLD | NEW |