blob: 43ed152187b364b2deaef152b518df24d758f505 [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_fuchsia)
import("//testing/test.gni")
# Binary used to proxy TCP connections from a Fuchsia process. Potentially SSH
# can be used to forward TCP, but this feature is currently broken on Fuchsia,
# see ZX-1555. layout_test_proxy can be removed once that issue with sshd is
# fixed and layout tests are updated to use SSH.
executable("layout_test_proxy") {
testonly = true
sources = [
"layout_test_proxy.cc",
]
deps = [
"//net",
"//net:test_support",
]
}
fuchsia_executable_runner("layout_test_proxy_runner") {
testonly = true
exe_target = ":layout_test_proxy"
}