blob: e2f5cbd2dd05e70693e976bba813a7a68747471a [file] [log] [blame]
# Copyright 2018 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.
import("//build/package.gni")
import("//build/test/test_package.gni")
executable("bin") {
testonly = true
output_name = "web_runner_smoke_tests"
sources = [
"test_server.cc",
"test_server.h",
"web_runner_smoke_tests.cc",
]
deps = [
"//sdk/fidl/fuchsia.sys",
"//garnet/public/lib/component/cpp/testing",
"//garnet/public/lib/fxl",
"//third_party/googletest:gtest_main",
]
}
package("web_runner_smoke_tests") {
testonly = true
deps = [
":bin",
]
tests = [
{
name = "web_runner_smoke_tests"
},
]
}