| 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_sdk.gni") | 5 import("../../../mojo_sdk.gni") |
| 6 | 6 |
| 7 mojo_sdk_source_set("tests") { | 7 mojo_sdk_source_set("tests") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 mojo_sdk_visibility = | 10 mojo_sdk_visibility = |
| 11 [ "mojo/public/cpp/system/tests:mojo_public_system_unittests" ] | 11 [ "mojo/public/cpp/system/tests:mojo_public_system_unittests" ] |
| 12 | 12 |
| 13 cflags_c = [ "-Wundef" ] | 13 cflags_c = [ "-Wundef" ] |
| 14 | 14 |
| 15 sources = [ | 15 sources = [ |
| 16 "buffer_unittest.cc", | 16 "buffer_unittest.cc", |
| 17 "compile_unittest.cc", | 17 "compile_unittest.cc", |
| 18 "data_pipe_unittest.cc", | 18 "data_pipe_unittest.cc", |
| 19 "handle_unittest.cc", | 19 "handle_unittest.cc", |
| 20 "macros_unittest.cc", | 20 "macros_unittest.cc", |
| 21 "message_pipe_unittest.cc", | 21 "message_pipe_unittest.cc", |
| 22 "result_unittest.cc", | 22 "result_unittest.cc", |
| 23 "time_unittest.cc", | 23 "time_unittest.cc", |
| 24 "wait_set_unittest.cc", |
| 24 "wait_unittest.cc", | 25 "wait_unittest.cc", |
| 25 ] | 26 ] |
| 26 | 27 |
| 27 deps = [ | 28 deps = [ |
| 28 ":pure_tests", | 29 ":pure_tests", |
| 29 "//testing/gtest", | 30 "//testing/gtest", |
| 30 ] | 31 ] |
| 31 | 32 |
| 32 mojo_sdk_deps = [ | 33 mojo_sdk_deps = [ |
| 33 "mojo/public/c/environment", | 34 "mojo/public/c/environment", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 deps = [ | 67 deps = [ |
| 67 "//testing/gtest", | 68 "//testing/gtest", |
| 68 ] | 69 ] |
| 69 | 70 |
| 70 mojo_sdk_deps = [ | 71 mojo_sdk_deps = [ |
| 71 "mojo/public/c/environment", | 72 "mojo/public/c/environment", |
| 72 "mojo/public/cpp/system", | 73 "mojo/public/cpp/system", |
| 73 "mojo/public/cpp/test_support", | 74 "mojo/public/cpp/test_support", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| OLD | NEW |