| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "data_pipe_consumer_dispatcher.h", | 44 "data_pipe_consumer_dispatcher.h", |
| 45 "data_pipe_producer_dispatcher.cc", | 45 "data_pipe_producer_dispatcher.cc", |
| 46 "data_pipe_producer_dispatcher.h", | 46 "data_pipe_producer_dispatcher.h", |
| 47 "dispatcher.cc", | 47 "dispatcher.cc", |
| 48 "dispatcher.h", | 48 "dispatcher.h", |
| 49 "endpoint_relayer.cc", | 49 "endpoint_relayer.cc", |
| 50 "endpoint_relayer.h", | 50 "endpoint_relayer.h", |
| 51 "handle_signals_state.h", | 51 "handle_signals_state.h", |
| 52 "handle_table.cc", | 52 "handle_table.cc", |
| 53 "handle_table.h", | 53 "handle_table.h", |
| 54 "incoming_endpoint.cc", |
| 55 "incoming_endpoint.h", |
| 54 "local_data_pipe.cc", | 56 "local_data_pipe.cc", |
| 55 "local_data_pipe.h", | 57 "local_data_pipe.h", |
| 56 "local_message_pipe_endpoint.cc", | 58 "local_message_pipe_endpoint.cc", |
| 57 "local_message_pipe_endpoint.h", | 59 "local_message_pipe_endpoint.h", |
| 58 "mapping_table.cc", | 60 "mapping_table.cc", |
| 59 "mapping_table.h", | 61 "mapping_table.h", |
| 60 "memory.cc", | 62 "memory.cc", |
| 61 "memory.h", | 63 "memory.h", |
| 62 "message_in_transit.cc", | 64 "message_in_transit.cc", |
| 63 "message_in_transit.h", | 65 "message_in_transit.h", |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 } | 194 } |
| 193 | 195 |
| 194 if (is_android) { | 196 if (is_android) { |
| 195 unittest_apk("mojo_system_unittests_apk") { | 197 unittest_apk("mojo_system_unittests_apk") { |
| 196 deps = [ | 198 deps = [ |
| 197 ":mojo_system_unittests", | 199 ":mojo_system_unittests", |
| 198 ] | 200 ] |
| 199 unittests_dep = ":mojo_system_unittests" | 201 unittests_dep = ":mojo_system_unittests" |
| 200 } | 202 } |
| 201 } | 203 } |
| OLD | NEW |