| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 "handle_table.cc", | 60 "handle_table.cc", |
| 61 "handle_table.h", | 61 "handle_table.h", |
| 62 "incoming_endpoint.cc", | 62 "incoming_endpoint.cc", |
| 63 "incoming_endpoint.h", | 63 "incoming_endpoint.h", |
| 64 "ipc_support.cc", | 64 "ipc_support.cc", |
| 65 "ipc_support.h", | 65 "ipc_support.h", |
| 66 "local_data_pipe_impl.cc", | 66 "local_data_pipe_impl.cc", |
| 67 "local_data_pipe_impl.h", | 67 "local_data_pipe_impl.h", |
| 68 "local_message_pipe_endpoint.cc", | 68 "local_message_pipe_endpoint.cc", |
| 69 "local_message_pipe_endpoint.h", | 69 "local_message_pipe_endpoint.h", |
| 70 "make_unique.h", |
| 70 "mapping_table.cc", | 71 "mapping_table.cc", |
| 71 "mapping_table.h", | 72 "mapping_table.h", |
| 72 "master_connection_manager.cc", | 73 "master_connection_manager.cc", |
| 73 "master_connection_manager.h", | 74 "master_connection_manager.h", |
| 74 "memory.cc", | 75 "memory.cc", |
| 75 "memory.h", | 76 "memory.h", |
| 76 "message_in_transit.cc", | 77 "message_in_transit.cc", |
| 77 "message_in_transit.h", | 78 "message_in_transit.h", |
| 78 "message_in_transit_queue.cc", | 79 "message_in_transit_queue.cc", |
| 79 "message_in_transit_queue.h", | 80 "message_in_transit_queue.h", |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 deps = [ | 238 deps = [ |
| 238 ":system", | 239 ":system", |
| 239 ":test_utils", | 240 ":test_utils", |
| 240 "../test:test_support", | 241 "../test:test_support", |
| 241 "//base", | 242 "//base", |
| 242 "//base/test:test_support", | 243 "//base/test:test_support", |
| 243 "//base/test:test_support_perf", | 244 "//base/test:test_support_perf", |
| 244 "//testing/gtest", | 245 "//testing/gtest", |
| 245 ] | 246 ] |
| 246 } | 247 } |
| OLD | NEW |