| OLD | NEW |
| 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 Loading... |
| 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_sync_manager.cc", |
| 101 "helium/helium_sync_manager.h", |
| 100 "helium/vector_clock.cc", | 102 "helium/vector_clock.cc", |
| 101 "helium/vector_clock.h", | 103 "helium/vector_clock.h", |
| 102 ] | 104 ] |
| 103 deps = [ | 105 deps = [ |
| 104 ":net_export", | 106 ":net_export", |
| 105 "//base", | 107 "//base", |
| 106 "//blimp/common", | 108 "//blimp/common", |
| 107 ] | 109 ] |
| 108 | 110 |
| 109 public_deps = [ | 111 public_deps = [ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "//base/test:test_support", | 182 "//base/test:test_support", |
| 181 "//blimp/common", | 183 "//blimp/common", |
| 182 "//blimp/common:test_support", | 184 "//blimp/common:test_support", |
| 183 "//blimp/common/proto", | 185 "//blimp/common/proto", |
| 184 "//net:test_support", | 186 "//net:test_support", |
| 185 "//testing/gmock", | 187 "//testing/gmock", |
| 186 "//testing/gtest", | 188 "//testing/gtest", |
| 187 "//third_party/WebKit/public:blink_headers", | 189 "//third_party/WebKit/public:blink_headers", |
| 188 ] | 190 ] |
| 189 } | 191 } |
| OLD | NEW |