Chromium Code Reviews| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 45 "compressed_packet_writer.cc", | 45 "compressed_packet_writer.cc", |
| 46 "compressed_packet_writer.h", | 46 "compressed_packet_writer.h", |
| 47 "connection_error_observer.h", | 47 "connection_error_observer.h", |
| 48 "connection_handler.h", | 48 "connection_handler.h", |
| 49 "engine_authentication_handler.cc", | 49 "engine_authentication_handler.cc", |
| 50 "engine_authentication_handler.h", | 50 "engine_authentication_handler.h", |
| 51 "engine_connection_manager.cc", | 51 "engine_connection_manager.cc", |
| 52 "engine_connection_manager.h", | 52 "engine_connection_manager.h", |
| 53 "exact_match_cert_verifier.cc", | 53 "exact_match_cert_verifier.cc", |
| 54 "exact_match_cert_verifier.h", | 54 "exact_match_cert_verifier.h", |
| 55 "helium/helium_sync_manager.cc", | |
|
scf
2016/09/28 17:18:00
might want to move to source_set("helium") once cl
Kevin M
2016/09/29 00:06:28
Done.
| |
| 56 "helium/helium_sync_manager.h", | |
| 55 "input_message_converter.cc", | 57 "input_message_converter.cc", |
| 56 "input_message_converter.h", | 58 "input_message_converter.h", |
| 57 "input_message_generator.cc", | 59 "input_message_generator.cc", |
| 58 "input_message_generator.h", | 60 "input_message_generator.h", |
| 59 "message_port.cc", | 61 "message_port.cc", |
| 60 "message_port.h", | 62 "message_port.h", |
| 61 "null_blimp_message_processor.cc", | 63 "null_blimp_message_processor.cc", |
| 62 "null_blimp_message_processor.h", | 64 "null_blimp_message_processor.h", |
| 63 "ssl_client_transport.cc", | 65 "ssl_client_transport.cc", |
| 64 "ssl_client_transport.h", | 66 "ssl_client_transport.h", |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 149 "//base/test:test_support", | 151 "//base/test:test_support", |
| 150 "//blimp/common", | 152 "//blimp/common", |
| 151 "//blimp/common:test_support", | 153 "//blimp/common:test_support", |
| 152 "//blimp/common/proto", | 154 "//blimp/common/proto", |
| 153 "//net:test_support", | 155 "//net:test_support", |
| 154 "//testing/gmock", | 156 "//testing/gmock", |
| 155 "//testing/gtest", | 157 "//testing/gtest", |
| 156 "//third_party/WebKit/public:blink_headers", | 158 "//third_party/WebKit/public:blink_headers", |
| 157 ] | 159 ] |
| 158 } | 160 } |
| OLD | NEW |