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

Unified 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, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: components/grpc_support/BUILD.gn
diff --git a/components/grpc_support/BUILD.gn b/components/grpc_support/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2b9c131b54d5832206c0e7beeba55b8529c95f3b
--- /dev/null
+++ b/components/grpc_support/BUILD.gn
@@ -0,0 +1,76 @@
+source_set("grpc_support") {
+ sources = [
+ "bidirectional_stream.cc",
+ "bidirectional_stream.h",
+ "bidirectional_stream_c.cc",
+ "include/bidirectional_stream_c.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ "//url",
+ ]
+}
+
+source_set("bidirectional_stream_unittest") {
+ testonly = true
+ sources = [
+ "bidirectional_stream_unittest.cc",
+ ]
+
+ deps = [
+ ":grpc_support",
+ ":quic_test_server",
+ "//base",
+ "//net",
+ "//net:test_support",
+ ]
+
+ public_deps = [
+ ":test_get_stream_engine_header",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "test/get_stream_engine.cc",
mef 2016/10/26 22:19:45 I might be wrong, but I think test/* source_sets s
+ ]
+
+ deps = [
+ ":bidirectional_stream_unittest",
+ ":grpc_support",
+ ":quic_test_server",
+ "//base",
+ "//net",
+ "//net:test_support",
+ ]
+}
+
+source_set("quic_test_server") {
+ testonly = true
+ sources = [
+ "test/quic_test_server.cc",
+ "test/quic_test_server.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ "//net:simple_quic_tools",
+ "//net:test_support",
+ ]
+}
+
+source_set("test_get_stream_engine_header") {
+ testonly = true
+ sources = [
+ "test/get_stream_engine.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698