blob: f264e6be1a8fbd87168c4bb2ba28c7242dfb0f6a [file] [log] [blame]
# Copyright 2017 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
group("test") {
testonly = true
public_deps = [
":fake_command",
":fake_failing_test",
":fake_passing_test",
]
}
executable("fake_command") {
testonly = true
sources = [ "fake_command.cc" ]
}
executable("fake_failing_test") {
testonly = true
deps = [ "//src/lib/fxl/test:gtest_main" ]
sources = [ "fake_failing_test.cc" ]
}
executable("fake_passing_test") {
testonly = true
deps = [ "//src/lib/fxl/test:gtest_main" ]
sources = [ "fake_passing_test.cc" ]
}