Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: components/grpc_support/test/BUILD.gn

Issue 2273403003: Moving gRPC support interfaces out of cronet and into a new component. (Closed)
Patch Set: Address comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 source_set("unit_tests") {
2 testonly = true
3 sources = [
4 "get_stream_engine.cc",
5 ]
6
7 deps = [
8 ":quic_test_server",
9 "//base",
10 "//components/grpc_support",
11 "//components/grpc_support:bidirectional_stream_unittest",
12 "//net",
13 "//net:test_support",
14 ]
15 }
16
17 source_set("quic_test_server") {
18 testonly = true
19 sources = [
20 "quic_test_server.cc",
21 "quic_test_server.h",
22 ]
23
24 deps = [
25 "//base",
26 "//net",
27 "//net:simple_quic_tools",
28 "//net:test_support",
29 ]
30 }
31
32 source_set("get_stream_engine_header") {
33 testonly = true
34 sources = [
35 "get_stream_engine.h",
36 ]
37
38 deps = [
39 "//base",
40 "//net",
41 ]
42 }
OLDNEW
« no previous file with comments | « components/grpc_support/include/headers.gni ('k') | components/grpc_support/test/get_stream_engine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698