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

Side by Side Diff: blimp/net/BUILD.gn

Issue 2382533002: Helium: Initial proto and Syncable interface definition (Closed)
Patch Set: changes as discussed offline with @wez and @kevin 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 component("net") { 5 component("net") {
6 output_name = "blimp_net" 6 output_name = "blimp_net"
7 sources = [ 7 sources = [
8 "blimp_connection.cc", 8 "blimp_connection.cc",
9 "blimp_connection.h", 9 "blimp_connection.h",
10 "blimp_message_checkpoint_observer.h", 10 "blimp_message_checkpoint_observer.h",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//ui/base/ime:text_input_types", 86 "//ui/base/ime:text_input_types",
87 ] 87 ]
88 88
89 public_deps = [ 89 public_deps = [
90 "//blimp/common/proto", 90 "//blimp/common/proto",
91 ] 91 ]
92 } 92 }
93 93
94 source_set("helium") { 94 source_set("helium") {
95 sources = [ 95 sources = [
96 "helium/syncable.h",
96 "helium/vector_clock.cc", 97 "helium/vector_clock.cc",
97 "helium/vector_clock.h", 98 "helium/vector_clock.h",
98 ] 99 ]
99 deps = [ 100 deps = [
100 "//base", 101 "//base",
101 "//blimp/common", 102 "//blimp/common",
102 ] 103 ]
103 104
104 public_deps = [ 105 public_deps = [
105 "//blimp/common/proto", 106 "//blimp/common/proto",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "blimp_stats_unittest.cc", 144 "blimp_stats_unittest.cc",
144 "blob_channel/blob_channel_integration_test.cc", 145 "blob_channel/blob_channel_integration_test.cc",
145 "blob_channel/blob_channel_receiver_unittest.cc", 146 "blob_channel/blob_channel_receiver_unittest.cc",
146 "blob_channel/blob_channel_sender_unittest.cc", 147 "blob_channel/blob_channel_sender_unittest.cc",
147 "blob_channel/helium_blob_channel_unittest.cc", 148 "blob_channel/helium_blob_channel_unittest.cc",
148 "browser_connection_handler_unittest.cc", 149 "browser_connection_handler_unittest.cc",
149 "client_connection_manager_unittest.cc", 150 "client_connection_manager_unittest.cc",
150 "compressed_packet_unittest.cc", 151 "compressed_packet_unittest.cc",
151 "engine_authentication_handler_unittest.cc", 152 "engine_authentication_handler_unittest.cc",
152 "engine_connection_manager_unittest.cc", 153 "engine_connection_manager_unittest.cc",
154 "helium/syncable_unittest.cc",
153 "helium/vector_clock_unittest.cc", 155 "helium/vector_clock_unittest.cc",
154 "input_message_unittest.cc", 156 "input_message_unittest.cc",
155 "ssl_client_transport_unittest.cc", 157 "ssl_client_transport_unittest.cc",
156 "stream_packet_reader_unittest.cc", 158 "stream_packet_reader_unittest.cc",
157 "stream_packet_writer_unittest.cc", 159 "stream_packet_writer_unittest.cc",
158 "tcp_transport_unittest.cc", 160 "tcp_transport_unittest.cc",
159 "thread_pipe_manager_unittest.cc", 161 "thread_pipe_manager_unittest.cc",
160 ] 162 ]
161 163
162 deps = [ 164 deps = [
163 ":helium", 165 ":helium",
164 ":net", 166 ":net",
165 ":test_support", 167 ":test_support",
166 "//base", 168 "//base",
167 "//base/test:test_support", 169 "//base/test:test_support",
168 "//blimp/common", 170 "//blimp/common",
169 "//blimp/common:test_support", 171 "//blimp/common:test_support",
170 "//blimp/common/proto", 172 "//blimp/common/proto",
171 "//net:test_support", 173 "//net:test_support",
172 "//testing/gmock", 174 "//testing/gmock",
173 "//testing/gtest", 175 "//testing/gtest",
174 "//third_party/WebKit/public:blink_headers", 176 "//third_party/WebKit/public:blink_headers",
175 ] 177 ]
176 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698