| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("../../../mojo/public/tools/bindings/mojom.gni") | 6 import("../../../mojo/public/tools/bindings/mojom.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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 "message_in_transit_queue.h", | 62 "message_in_transit_queue.h", |
| 63 "message_pipe_dispatcher.cc", | 63 "message_pipe_dispatcher.cc", |
| 64 "message_pipe_dispatcher.h", | 64 "message_pipe_dispatcher.h", |
| 65 "options_validation.h", | 65 "options_validation.h", |
| 66 "platform_handle_dispatcher.cc", | 66 "platform_handle_dispatcher.cc", |
| 67 "platform_handle_dispatcher.h", | 67 "platform_handle_dispatcher.h", |
| 68 "raw_channel.cc", | 68 "raw_channel.cc", |
| 69 "raw_channel.h", | 69 "raw_channel.h", |
| 70 "raw_channel_posix.cc", | 70 "raw_channel_posix.cc", |
| 71 "raw_channel_win.cc", | 71 "raw_channel_win.cc", |
| 72 "routed_raw_channel.cc", |
| 73 "routed_raw_channel.h", |
| 72 "shared_buffer_dispatcher.cc", | 74 "shared_buffer_dispatcher.cc", |
| 73 "shared_buffer_dispatcher.h", | 75 "shared_buffer_dispatcher.h", |
| 74 "simple_dispatcher.cc", | 76 "simple_dispatcher.cc", |
| 75 "simple_dispatcher.h", | 77 "simple_dispatcher.h", |
| 76 "transport_data.cc", | 78 "transport_data.cc", |
| 77 "transport_data.h", | 79 "transport_data.h", |
| 78 "waiter.cc", | 80 "waiter.cc", |
| 79 "waiter.h", | 81 "waiter.h", |
| 80 ] | 82 ] |
| 81 | 83 |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "../test:test_support", | 202 "../test:test_support", |
| 201 "//base", | 203 "//base", |
| 202 "//base/test:test_support", | 204 "//base/test:test_support", |
| 203 "//testing/gtest", | 205 "//testing/gtest", |
| 204 | 206 |
| 205 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are | 207 # TODO(use_chrome_edk): temporary since the Mojo wrapper primitives are |
| 206 # declared in third party only for now. | 208 # declared in third party only for now. |
| 207 "//third_party/mojo/src/mojo/edk/system", | 209 "//third_party/mojo/src/mojo/edk/system", |
| 208 ] | 210 ] |
| 209 } | 211 } |
| OLD | NEW |