| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "data_pipe_control_message.h", | 45 "data_pipe_control_message.h", |
| 46 "data_pipe_producer_dispatcher.cc", | 46 "data_pipe_producer_dispatcher.cc", |
| 47 "data_pipe_producer_dispatcher.h", | 47 "data_pipe_producer_dispatcher.h", |
| 48 "dispatcher.cc", | 48 "dispatcher.cc", |
| 49 "dispatcher.h", | 49 "dispatcher.h", |
| 50 "handle_signals_state.h", | 50 "handle_signals_state.h", |
| 51 "handle_table.cc", | 51 "handle_table.cc", |
| 52 "handle_table.h", | 52 "handle_table.h", |
| 53 "mapping_table.cc", | 53 "mapping_table.cc", |
| 54 "mapping_table.h", | 54 "mapping_table.h", |
| 55 "message_for_transit.cc", |
| 56 "message_for_transit.h", |
| 55 "message_pipe_dispatcher.cc", | 57 "message_pipe_dispatcher.cc", |
| 56 "message_pipe_dispatcher.h", | 58 "message_pipe_dispatcher.h", |
| 57 "node_channel.cc", | 59 "node_channel.cc", |
| 58 "node_channel.h", | 60 "node_channel.h", |
| 59 "node_controller.cc", | 61 "node_controller.cc", |
| 60 "node_controller.h", | 62 "node_controller.h", |
| 61 "options_validation.h", | 63 "options_validation.h", |
| 62 "platform_handle_dispatcher.cc", | 64 "platform_handle_dispatcher.cc", |
| 63 "platform_handle_dispatcher.h", | 65 "platform_handle_dispatcher.h", |
| 64 "ports_message.cc", | 66 "ports_message.cc", |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 deps = [ | 192 deps = [ |
| 191 ":test_utils", | 193 ":test_utils", |
| 192 "//base", | 194 "//base", |
| 193 "//base/test:test_support", | 195 "//base/test:test_support", |
| 194 "//mojo/edk/system", | 196 "//mojo/edk/system", |
| 195 "//mojo/edk/test:run_all_perftests", | 197 "//mojo/edk/test:run_all_perftests", |
| 196 "//mojo/edk/test:test_support", | 198 "//mojo/edk/test:test_support", |
| 197 "//testing/gtest", | 199 "//testing/gtest", |
| 198 ] | 200 ] |
| 199 } | 201 } |
| OLD | NEW |