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

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

Issue 2273403003: Moving gRPC support interfaces out of cronet and into a new component. (Closed)
Patch Set: Formatting again 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("grpc_support") {
2 sources = [
3 "bidirectional_stream.cc",
4 "bidirectional_stream.h",
5 "bidirectional_stream_c.cc",
6 "include/bidirectional_stream_c.h",
7 ]
8
9 deps = [
10 "//base",
11 "//net",
12 "//url",
13 ]
14 }
15
16 source_set("bidirectional_stream_unittest") {
17 testonly = true
18 sources = [
19 "bidirectional_stream_unittest.cc",
20 ]
21
22 deps = [
23 ":grpc_support",
24 ":quic_test_server",
25 "//base",
26 "//net",
27 "//net:test_support",
28 ]
29
30 public_deps = [
31 ":test_get_stream_engine_header",
32 ]
33 }
34
35 source_set("unit_tests") {
36 testonly = true
37 sources = [
38 "test/get_stream_engine.cc",
39 ]
40
41 deps = [
42 ":bidirectional_stream_unittest",
43 ":quic_test_server",
44 "//base",
45 "//net",
46 "//net:test_support",
47 ]
48 }
49
50 source_set("quic_test_server") {
51 testonly = true
52 sources = [
53 "test/quic_test_server.cc",
54 "test/quic_test_server.h",
55 ]
56
57 deps = [
58 "//base",
59 "//net",
60 "//net:simple_quic_tools",
61 "//net:test_support",
62 ]
63 }
64
65 source_set("test_get_stream_engine_header") {
66 testonly = true
67 sources = [
68 "test/get_stream_engine.h",
69 ]
70
71 deps = [
72 "//base",
73 "//net",
74 ]
75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698