mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
27 lines
408 B
Plaintext
27 lines
408 B
Plaintext
source_set("unit_tests") {
|
|
testonly = true
|
|
sources = [
|
|
"get_stream_engine.cc",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//components/grpc_support",
|
|
"//components/grpc_support:bidirectional_stream_unittest",
|
|
"//net",
|
|
"//net:test_support",
|
|
]
|
|
}
|
|
|
|
source_set("get_stream_engine_header") {
|
|
testonly = true
|
|
sources = [
|
|
"get_stream_engine.h",
|
|
]
|
|
|
|
deps = [
|
|
"//base",
|
|
"//net",
|
|
]
|
|
}
|