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

Unified Diff: blimp/net/BUILD.gn

Issue 2372903002: Helium: Adding vector clock (Closed)
Patch Set: Fixing CQ issue regarding net export Created 4 years, 3 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
« no previous file with comments | « no previous file | blimp/net/helium/vector_clock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/BUILD.gn
diff --git a/blimp/net/BUILD.gn b/blimp/net/BUILD.gn
index 9c3488256c37fc6b164cb2d4c95c9f9d7da0e891..2c6ab3a9c1b578ab5044a567081409cde84f3b24 100644
--- a/blimp/net/BUILD.gn
+++ b/blimp/net/BUILD.gn
@@ -77,6 +77,7 @@ component("net") {
defines = [ "BLIMP_NET_IMPLEMENTATION=1" ]
deps = [
+ ":helium",
"//base",
"//blimp/common",
"//net",
@@ -90,6 +91,21 @@ component("net") {
]
}
+source_set("helium") {
+ sources = [
+ "helium/vector_clock.cc",
+ "helium/vector_clock.h",
+ ]
+ deps = [
+ "//base",
+ "//blimp/common",
+ ]
+
+ public_deps = [
+ "//blimp/common/proto",
+ ]
+}
+
source_set("test_support") {
testonly = true
@@ -134,6 +150,7 @@ source_set("unit_tests") {
"compressed_packet_unittest.cc",
"engine_authentication_handler_unittest.cc",
"engine_connection_manager_unittest.cc",
+ "helium/vector_clock_unittest.cc",
"input_message_unittest.cc",
"ssl_client_transport_unittest.cc",
"stream_packet_reader_unittest.cc",
@@ -143,6 +160,7 @@ source_set("unit_tests") {
]
deps = [
+ ":helium",
":net",
":test_support",
"//base",
« no previous file with comments | « no previous file | blimp/net/helium/vector_clock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698