From 21958e7559f9a164be9458cb833571191f9b5c67 Mon Sep 17 00:00:00 2001 From: klzgrad Date: Wed, 24 Jan 2018 23:38:37 -0500 Subject: [PATCH] Add Naive client to BUILD.gn --- src/net/BUILD.gn | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/net/BUILD.gn b/src/net/BUILD.gn index a49d8faa3d..ce6bef9167 100644 --- a/src/net/BUILD.gn +++ b/src/net/BUILD.gn @@ -1741,3 +1741,23 @@ static_library("preload_decoder") { ] deps = [ "//base" ] } + +executable("naive") { + sources = [ + "tools/naive/naive_connection.cc", + "tools/naive/naive_connection.h", + "tools/naive/naive_proxy.cc", + "tools/naive/naive_proxy.h", + "tools/naive/naive_proxy_bin.cc", + "tools/naive/socks5_server_socket.cc", + "tools/naive/socks5_server_socket.h", + ] + + deps = [ + ":net", + "//base", + "//build/win:default_exe_manifest", + "//components/version_info:version_info", + "//url", + ] +}