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

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

Issue 2383533003: Blimp: define HeliumTransport/HeliumStream interfaces. (Closed)
Patch Set: code review 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
« no previous file with comments | « no previous file | blimp/net/helium/helium_stream.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 public_deps = [ 90 public_deps = [
91 "//blimp/common/proto", 91 "//blimp/common/proto",
92 ] 92 ]
93 } 93 }
94 94
95 source_set("helium") { 95 source_set("helium") {
96 sources = [ 96 sources = [
97 "helium/helium_errors.h", 97 "helium/helium_errors.h",
98 "helium/helium_result.cc", 98 "helium/helium_result.cc",
99 "helium/helium_result.h", 99 "helium/helium_result.h",
100 "helium/helium_stream.h",
100 "helium/helium_sync_manager.cc", 101 "helium/helium_sync_manager.cc",
101 "helium/helium_sync_manager.h", 102 "helium/helium_sync_manager.h",
103 "helium/helium_transport.h",
102 "helium/syncable.h", 104 "helium/syncable.h",
103 "helium/version_vector.cc", 105 "helium/version_vector.cc",
104 "helium/version_vector.h", 106 "helium/version_vector.h",
105 "helium/version_vector_generator.h", 107 "helium/version_vector_generator.h",
106 ] 108 ]
107 deps = [ 109 deps = [
108 ":net_export", 110 ":net_export",
109 "//base", 111 "//base",
110 "//blimp/common", 112 "//blimp/common",
113 "//net",
111 ] 114 ]
112 115
113 public_deps = [ 116 public_deps = [
114 "//blimp/common/proto", 117 "//blimp/common/proto",
115 ] 118 ]
116 } 119 }
117 120
118 source_set("net_export") { 121 source_set("net_export") {
119 sources = [ 122 sources = [
120 "blimp_net_export.h", 123 "blimp_net_export.h",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 "//base/test:test_support", 189 "//base/test:test_support",
187 "//blimp/common", 190 "//blimp/common",
188 "//blimp/common:test_support", 191 "//blimp/common:test_support",
189 "//blimp/common/proto", 192 "//blimp/common/proto",
190 "//net:test_support", 193 "//net:test_support",
191 "//testing/gmock", 194 "//testing/gmock",
192 "//testing/gtest", 195 "//testing/gtest",
193 "//third_party/WebKit/public:blink_headers", 196 "//third_party/WebKit/public:blink_headers",
194 ] 197 ]
195 } 198 }
OLDNEW
« no previous file with comments | « no previous file | blimp/net/helium/helium_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698