mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 06:16:30 +03:00
Add build rules of Naive client
This commit is contained in:
parent
d17ace9d8a
commit
ea5056980a
22
net/BUILD.gn
22
net/BUILD.gn
@ -2813,6 +2813,28 @@ if (!is_ios && !is_android) {
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
executable("naive_client") {
|
||||||
|
testonly = true
|
||||||
|
sources = [
|
||||||
|
"tools/naive/naive_client.cc",
|
||||||
|
"tools/naive/naive_client.h",
|
||||||
|
"tools/naive/naive_client_bin.cc",
|
||||||
|
"tools/naive/naive_client_connection.cc",
|
||||||
|
"tools/naive/naive_client_connection.h",
|
||||||
|
"tools/naive/socks5_server_socket.cc",
|
||||||
|
"tools/naive/socks5_server_socket.h",
|
||||||
|
]
|
||||||
|
|
||||||
|
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
||||||
|
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
|
||||||
|
deps = [
|
||||||
|
":net",
|
||||||
|
"//base",
|
||||||
|
"//build/win:default_exe_manifest",
|
||||||
|
"//url",
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
executable("hpack_example_generator") {
|
executable("hpack_example_generator") {
|
||||||
testonly = true
|
testonly = true
|
||||||
sources = [
|
sources = [
|
||||||
|
Loading…
Reference in New Issue
Block a user