| 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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 173     "message_pipe_test_utils.h", | 173     "message_pipe_test_utils.h", | 
| 174     "message_pipe_unittest.cc", | 174     "message_pipe_unittest.cc", | 
| 175     "multiprocess_message_pipe_unittest.cc", | 175     "multiprocess_message_pipe_unittest.cc", | 
| 176     "mutex_unittest.cc", | 176     "mutex_unittest.cc", | 
| 177     "options_validation_unittest.cc", | 177     "options_validation_unittest.cc", | 
| 178     "platform_handle_dispatcher_unittest.cc", | 178     "platform_handle_dispatcher_unittest.cc", | 
| 179     "raw_channel_unittest.cc", | 179     "raw_channel_unittest.cc", | 
| 180     "ref_counted_unittest.cc", | 180     "ref_counted_unittest.cc", | 
| 181     "remote_data_pipe_impl_unittest.cc", | 181     "remote_data_pipe_impl_unittest.cc", | 
| 182     "remote_message_pipe_unittest.cc", | 182     "remote_message_pipe_unittest.cc", | 
| 183     "run_all_unittests.cc", |  | 
| 184     "shared_buffer_dispatcher_unittest.cc", | 183     "shared_buffer_dispatcher_unittest.cc", | 
| 185     "simple_dispatcher_unittest.cc", | 184     "simple_dispatcher_unittest.cc", | 
| 186     "test_channel_endpoint_client.cc", | 185     "test_channel_endpoint_client.cc", | 
| 187     "test_channel_endpoint_client.h", | 186     "test_channel_endpoint_client.h", | 
| 188     "thread_annotations_unittest.cc", | 187     "thread_annotations_unittest.cc", | 
| 189     "unique_identifier_unittest.cc", | 188     "unique_identifier_unittest.cc", | 
| 190     "waiter_test_utils.cc", | 189     "waiter_test_utils.cc", | 
| 191     "waiter_test_utils.h", | 190     "waiter_test_utils.h", | 
| 192     "waiter_unittest.cc", | 191     "waiter_unittest.cc", | 
| 193   ] | 192   ] | 
| 194 | 193 | 
| 195   deps = [ | 194   deps = [ | 
| 196     ":system", | 195     ":system", | 
| 197     "../embedder:embedder_unittests", | 196     "../embedder:embedder_unittests", | 
| 198     "../test:test_support", | 197     "../test:test_support", | 
| 199     "../util", | 198     "../util", | 
| 200     "test", | 199     "test", | 
|  | 200     "test:run_all_unittests", | 
| 201     "test:unittests", | 201     "test:unittests", | 
| 202     "//base", | 202     "//base", | 
| 203     "//base/test:test_support", |  | 
| 204     "//testing/gtest", | 203     "//testing/gtest", | 
| 205   ] | 204   ] | 
| 206 |  | 
| 207   allow_circular_includes_from = [ "../embedder:embedder_unittests" ] |  | 
| 208 } | 205 } | 
| 209 | 206 | 
| 210 test("mojo_system_perftests") { | 207 test("mojo_system_perftests") { | 
| 211   sources = [ | 208   sources = [ | 
| 212     "message_pipe_perftest.cc", | 209     "message_pipe_perftest.cc", | 
| 213     "message_pipe_test_utils.cc", | 210     "message_pipe_test_utils.cc", | 
| 214     "message_pipe_test_utils.h", | 211     "message_pipe_test_utils.h", | 
| 215     "ref_counted_perftest.cc", | 212     "ref_counted_perftest.cc", | 
| 216   ] | 213   ] | 
| 217 | 214 | 
| 218   deps = [ | 215   deps = [ | 
| 219     ":system", | 216     ":system", | 
| 220     "../test:test_support", | 217     "../test:test_support", | 
| 221     "test", | 218     "test", | 
|  | 219     "test:perf", | 
|  | 220     "test:run_all_perftests", | 
| 222     "//base", | 221     "//base", | 
| 223     "//base/test:test_support", |  | 
| 224     "//base/test:test_support_perf", |  | 
| 225     "//testing/gtest", | 222     "//testing/gtest", | 
| 226   ] | 223   ] | 
| 227 } | 224 } | 
| OLD | NEW | 
|---|