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 3# found in the LICENSE file. 4 5source_set("tests") { 6 testonly = true 7 8 sources = [ 9 "core_unittest.cc", 10 "data_pipe_drainer_unittest.cc", 11 "file_data_pipe_producer_unittest.cc", 12 "handle_signal_tracker_unittest.cc", 13 "handle_signals_state_unittest.cc", 14 "scope_to_message_pipe_unittest.cc", 15 "simple_watcher_unittest.cc", 16 "string_data_pipe_producer_unittest.cc", 17 "wait_set_unittest.cc", 18 "wait_unittest.cc", 19 ] 20 21 if (!is_ios) { 22 sources += [ "invitation_unittest.cc" ] 23 } 24 25 deps = [ 26 "//base", 27 "//base/test:test_support", 28 "//mojo/core/test:test_support", 29 "//mojo/public/c/system/tests", 30 "//mojo/public/cpp/platform", 31 "//mojo/public/cpp/system", 32 "//mojo/public/cpp/test_support:test_utils", 33 "//testing/gtest", 34 ] 35} 36