| 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("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("../../../mojo/public/tools/bindings/mojom.gni") | 7 import("../../../mojo/public/tools/bindings/mojom.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "awakable_list_unittest.cc", | 158 "awakable_list_unittest.cc", |
| 159 "channel_unittest.cc", | 159 "channel_unittest.cc", |
| 160 "core_test_base.cc", | 160 "core_test_base.cc", |
| 161 "core_test_base.h", | 161 "core_test_base.h", |
| 162 "core_unittest.cc", | 162 "core_unittest.cc", |
| 163 "message_pipe_unittest.cc", | 163 "message_pipe_unittest.cc", |
| 164 "options_validation_unittest.cc", | 164 "options_validation_unittest.cc", |
| 165 "platform_handle_dispatcher_unittest.cc", | 165 "platform_handle_dispatcher_unittest.cc", |
| 166 "shared_buffer_dispatcher_unittest.cc", | 166 "shared_buffer_dispatcher_unittest.cc", |
| 167 "shared_buffer_unittest.cc", | 167 "shared_buffer_unittest.cc", |
| 168 "signals_unittest.cc", | |
| 169 "wait_set_dispatcher_unittest.cc", | 168 "wait_set_dispatcher_unittest.cc", |
| 170 "waiter_test_utils.cc", | 169 "waiter_test_utils.cc", |
| 171 "waiter_test_utils.h", | 170 "waiter_test_utils.h", |
| 172 "waiter_unittest.cc", | 171 "waiter_unittest.cc", |
| 173 "watcher_unittest.cc", | 172 "watcher_unittest.cc", |
| 174 ] | 173 ] |
| 175 | 174 |
| 176 if (!is_ios) { | 175 if (!is_ios) { |
| 177 sources += [ | 176 sources += [ |
| 178 "data_pipe_unittest.cc", | 177 "data_pipe_unittest.cc", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 207 ":test_utils", | 206 ":test_utils", |
| 208 "//base", | 207 "//base", |
| 209 "//base/test:test_support", | 208 "//base/test:test_support", |
| 210 "//mojo/edk/system", | 209 "//mojo/edk/system", |
| 211 "//mojo/edk/test:run_all_perftests", | 210 "//mojo/edk/test:run_all_perftests", |
| 212 "//mojo/edk/test:test_support", | 211 "//mojo/edk/test:test_support", |
| 213 "//testing/gtest", | 212 "//testing/gtest", |
| 214 ] | 213 ] |
| 215 } | 214 } |
| 216 } | 215 } |
| OLD | NEW |