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

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

Issue 2382533002: Helium: Initial proto and Syncable interface definition (Closed)
Patch Set: Addressing initial feedback 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.cc",
97 "helium/syncable.h",
96 "helium/vector_clock.cc", 98 "helium/vector_clock.cc",
97 "helium/vector_clock.h", 99 "helium/vector_clock.h",
98 ] 100 ]
99 deps = [ 101 deps = [
100 "//base", 102 "//base",
101 "//blimp/common", 103 "//blimp/common",
102 ] 104 ]
103 105
104 public_deps = [ 106 public_deps = [
105 "//blimp/common/proto", 107 "//blimp/common/proto",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 "blimp_stats_unittest.cc", 145 "blimp_stats_unittest.cc",
144 "blob_channel/blob_channel_integration_test.cc", 146 "blob_channel/blob_channel_integration_test.cc",
145 "blob_channel/blob_channel_receiver_unittest.cc", 147 "blob_channel/blob_channel_receiver_unittest.cc",
146 "blob_channel/blob_channel_sender_unittest.cc", 148 "blob_channel/blob_channel_sender_unittest.cc",
147 "blob_channel/helium_blob_channel_unittest.cc", 149 "blob_channel/helium_blob_channel_unittest.cc",
148 "browser_connection_handler_unittest.cc", 150 "browser_connection_handler_unittest.cc",
149 "client_connection_manager_unittest.cc", 151 "client_connection_manager_unittest.cc",
150 "compressed_packet_unittest.cc", 152 "compressed_packet_unittest.cc",
151 "engine_authentication_handler_unittest.cc", 153 "engine_authentication_handler_unittest.cc",
152 "engine_connection_manager_unittest.cc", 154 "engine_connection_manager_unittest.cc",
155 "helium/syncable_unittest.cc",
153 "helium/vector_clock_unittest.cc", 156 "helium/vector_clock_unittest.cc",
154 "input_message_unittest.cc", 157 "input_message_unittest.cc",
155 "ssl_client_transport_unittest.cc", 158 "ssl_client_transport_unittest.cc",
156 "stream_packet_reader_unittest.cc", 159 "stream_packet_reader_unittest.cc",
157 "stream_packet_writer_unittest.cc", 160 "stream_packet_writer_unittest.cc",
158 "tcp_transport_unittest.cc", 161 "tcp_transport_unittest.cc",
159 "thread_pipe_manager_unittest.cc", 162 "thread_pipe_manager_unittest.cc",
160 ] 163 ]
161 164
162 deps = [ 165 deps = [
163 ":helium", 166 ":helium",
164 ":net", 167 ":net",
165 ":test_support", 168 ":test_support",
166 "//base", 169 "//base",
167 "//base/test:test_support", 170 "//base/test:test_support",
168 "//blimp/common", 171 "//blimp/common",
169 "//blimp/common:test_support", 172 "//blimp/common:test_support",
170 "//blimp/common/proto", 173 "//blimp/common/proto",
171 "//net:test_support", 174 "//net:test_support",
172 "//testing/gmock", 175 "//testing/gmock",
173 "//testing/gtest", 176 "//testing/gtest",
174 "//third_party/WebKit/public:blink_headers", 177 "//third_party/WebKit/public:blink_headers",
175 ] 178 ]
176 } 179 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698