| 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 = | |
| 11 [ "mojo/public/cpp/system/tests:mojo_public_system_unittests" ] | |
| 12 | |
| 13 cflags_c = [ "-Wundef" ] | 10 cflags_c = [ "-Wundef" ] |
| 14 | 11 |
| 15 sources = [ | 12 sources = [ |
| 16 "buffer_unittest.cc", | 13 "buffer_unittest.cc", |
| 17 "compile_unittest.cc", | 14 "compile_unittest.cc", |
| 18 "data_pipe_unittest.cc", | 15 "data_pipe_unittest.cc", |
| 19 "handle_unittest.cc", | 16 "handle_unittest.cc", |
| 20 "macros_unittest.cc", | 17 "macros_unittest.cc", |
| 21 "message_pipe_unittest.cc", | 18 "message_pipe_unittest.cc", |
| 22 "result_unittest.cc", | 19 "result_unittest.cc", |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "reference_perftest.cc", | 64 "reference_perftest.cc", |
| 68 "wait_set_perftest.cc", | 65 "wait_set_perftest.cc", |
| 69 ] | 66 ] |
| 70 | 67 |
| 71 deps = [ | 68 deps = [ |
| 72 "//testing/gtest", | 69 "//testing/gtest", |
| 73 ] | 70 ] |
| 74 | 71 |
| 75 mojo_sdk_deps = [ | 72 mojo_sdk_deps = [ |
| 76 "mojo/public/c/environment", | 73 "mojo/public/c/environment", |
| 77 "mojo/public/cpp/system", | 74 "mojo/public/c/system", |
| 78 "mojo/public/cpp/test_support", | 75 "mojo/public/cpp/test_support", |
| 79 ] | 76 ] |
| 80 } | 77 } |
| OLD | NEW |