| 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 source_set("tests") { | 5 source_set("tests") { |
| 6 testonly = true | 6 testonly = true |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "run_loop_unittest.cc", | 9 "run_loop_unittest.cc", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 "//mojo/public/cpp/environment:standalone", | |
| 14 "//mojo/public/cpp/system", | 13 "//mojo/public/cpp/system", |
| 15 "//mojo/public/cpp/test_support:test_utils", | 14 "//mojo/public/cpp/test_support:test_utils", |
| 16 "//mojo/public/cpp/utility", | 15 "//mojo/public/cpp/utility", |
| 17 "//testing/gtest", | 16 "//testing/gtest", |
| 18 ] | 17 ] |
| 19 | 18 |
| 20 # crbug.com/342893 | 19 # crbug.com/342893 |
| 21 if (!is_win) { | 20 if (!is_win) { |
| 22 sources += [ | 21 sources += [ |
| 23 "mutex_unittest.cc", | 22 "mutex_unittest.cc", |
| 24 "thread_unittest.cc", | 23 "thread_unittest.cc", |
| 25 ] | 24 ] |
| 26 } | 25 } |
| 27 } | 26 } |
| OLD | NEW |