| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 config("system_config") { | 10 config("system_config") { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 "raw_channel_posix.cc", | 72 "raw_channel_posix.cc", |
| 73 "raw_channel_win.cc", | 73 "raw_channel_win.cc", |
| 74 "shared_buffer_dispatcher.cc", | 74 "shared_buffer_dispatcher.cc", |
| 75 "shared_buffer_dispatcher.h", | 75 "shared_buffer_dispatcher.h", |
| 76 "simple_dispatcher.cc", | 76 "simple_dispatcher.cc", |
| 77 "simple_dispatcher.h", | 77 "simple_dispatcher.h", |
| 78 "transport_data.cc", | 78 "transport_data.cc", |
| 79 "transport_data.h", | 79 "transport_data.h", |
| 80 "waiter.cc", | 80 "waiter.cc", |
| 81 "waiter.h", | 81 "waiter.h", |
| 82 "waiter_list.cc", | 82 "awakable.h", |
| 83 "waiter_list.h", | 83 "awakable_list.cc", |
| 84 "awakable_list.h", |
| 84 ] | 85 ] |
| 85 | 86 |
| 86 defines = [ | 87 defines = [ |
| 87 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", | 88 "MOJO_SYSTEM_IMPL_IMPLEMENTATION", |
| 88 "MOJO_SYSTEM_IMPLEMENTATION", | 89 "MOJO_SYSTEM_IMPLEMENTATION", |
| 89 ] | 90 ] |
| 90 | 91 |
| 91 all_dependent_configs = [ ":system_config" ] | 92 all_dependent_configs = [ ":system_config" ] |
| 92 | 93 |
| 93 public_deps = [ | 94 public_deps = [ |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 "message_pipe_test_utils.h", | 138 "message_pipe_test_utils.h", |
| 138 "message_pipe_unittest.cc", | 139 "message_pipe_unittest.cc", |
| 139 "multiprocess_message_pipe_unittest.cc", | 140 "multiprocess_message_pipe_unittest.cc", |
| 140 "options_validation_unittest.cc", | 141 "options_validation_unittest.cc", |
| 141 "platform_handle_dispatcher_unittest.cc", | 142 "platform_handle_dispatcher_unittest.cc", |
| 142 "raw_channel_unittest.cc", | 143 "raw_channel_unittest.cc", |
| 143 "remote_message_pipe_unittest.cc", | 144 "remote_message_pipe_unittest.cc", |
| 144 "run_all_unittests.cc", | 145 "run_all_unittests.cc", |
| 145 "shared_buffer_dispatcher_unittest.cc", | 146 "shared_buffer_dispatcher_unittest.cc", |
| 146 "simple_dispatcher_unittest.cc", | 147 "simple_dispatcher_unittest.cc", |
| 147 "waiter_list_unittest.cc", | 148 "awakable_list_unittest.cc", |
| 148 "waiter_test_utils.cc", | 149 "waiter_test_utils.cc", |
| 149 "waiter_test_utils.h", | 150 "waiter_test_utils.h", |
| 150 "waiter_unittest.cc", | 151 "waiter_unittest.cc", |
| 151 ] | 152 ] |
| 152 | 153 |
| 153 deps = [ | 154 deps = [ |
| 154 ":system", | 155 ":system", |
| 155 ":test_utils", | 156 ":test_utils", |
| 156 "//base", | 157 "//base", |
| 157 "//base/test:test_support", | 158 "//base/test:test_support", |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 } | 190 } |
| 190 | 191 |
| 191 if (is_android) { | 192 if (is_android) { |
| 192 unittest_apk("mojo_system_unittests_apk") { | 193 unittest_apk("mojo_system_unittests_apk") { |
| 193 deps = [ | 194 deps = [ |
| 194 ":mojo_system_unittests", | 195 ":mojo_system_unittests", |
| 195 ] | 196 ] |
| 196 unittests_dep = ":mojo_system_unittests" | 197 unittests_dep = ":mojo_system_unittests" |
| 197 } | 198 } |
| 198 } | 199 } |
| OLD | NEW |