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

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: Fix ASAN break 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",
mef 2016/10/26 22:19:45 I might be wrong, but I think test/* source_sets s
39 ]
40
41 deps = [
42 ":bidirectional_stream_unittest",
43 ":grpc_support",
44 ":quic_test_server",
45 "//base",
46 "//net",
47 "//net:test_support",
48 ]
49 }
50
51 source_set("quic_test_server") {
52 testonly = true
53 sources = [
54 "test/quic_test_server.cc",
55 "test/quic_test_server.h",
56 ]
57
58 deps = [
59 "//base",
60 "//net",
61 "//net:simple_quic_tools",
62 "//net:test_support",
63 ]
64 }
65
66 source_set("test_get_stream_engine_header") {
67 testonly = true
68 sources = [
69 "test/get_stream_engine.h",
70 ]
71
72 deps = [
73 "//base",
74 "//net",
75 ]
76 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698