| 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 26 matching lines...) Expand all Loading... |
| 37 "channel_info.h", | 37 "channel_info.h", |
| 38 "channel_manager.cc", | 38 "channel_manager.cc", |
| 39 "channel_manager.h", | 39 "channel_manager.h", |
| 40 "configuration.cc", | 40 "configuration.cc", |
| 41 "configuration.h", | 41 "configuration.h", |
| 42 "connection_manager.h", | 42 "connection_manager.h", |
| 43 "core.cc", | 43 "core.cc", |
| 44 "core.h", | 44 "core.h", |
| 45 "data_pipe.cc", | 45 "data_pipe.cc", |
| 46 "data_pipe.h", | 46 "data_pipe.h", |
| 47 "data_pipe_impl.h", |
| 47 "data_pipe_consumer_dispatcher.cc", | 48 "data_pipe_consumer_dispatcher.cc", |
| 48 "data_pipe_consumer_dispatcher.h", | 49 "data_pipe_consumer_dispatcher.h", |
| 49 "data_pipe_producer_dispatcher.cc", | 50 "data_pipe_producer_dispatcher.cc", |
| 50 "data_pipe_producer_dispatcher.h", | 51 "data_pipe_producer_dispatcher.h", |
| 51 "dispatcher.cc", | 52 "dispatcher.cc", |
| 52 "dispatcher.h", | 53 "dispatcher.h", |
| 53 "endpoint_relayer.cc", | 54 "endpoint_relayer.cc", |
| 54 "endpoint_relayer.h", | 55 "endpoint_relayer.h", |
| 55 "handle_signals_state.h", | 56 "handle_signals_state.h", |
| 56 "handle_table.cc", | 57 "handle_table.cc", |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 deps = [ | 201 deps = [ |
| 201 ":system", | 202 ":system", |
| 202 ":test_utils", | 203 ":test_utils", |
| 203 "../test:test_support", | 204 "../test:test_support", |
| 204 "//base", | 205 "//base", |
| 205 "//base/test:test_support", | 206 "//base/test:test_support", |
| 206 "//base/test:test_support_perf", | 207 "//base/test:test_support_perf", |
| 207 "//testing/gtest", | 208 "//testing/gtest", |
| 208 ] | 209 ] |
| 209 } | 210 } |
| OLD | NEW |