| 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("blimp_net") { | 5 component("blimp_net") { |
| 6 sources = [ | 6 sources = [ |
| 7 "blimp_connection.cc", | 7 "blimp_connection.cc", |
| 8 "blimp_connection.h", | 8 "blimp_connection.h", |
| 9 "blimp_message_checkpoint_observer.h", | 9 "blimp_message_checkpoint_observer.h", |
| 10 "blimp_message_checkpointer.cc", | 10 "blimp_message_checkpointer.cc", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "thread_pipe_manager.h", | 58 "thread_pipe_manager.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 61 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
| 62 | 62 |
| 63 deps = [ | 63 deps = [ |
| 64 "//base", | 64 "//base", |
| 65 "//blimp/common:blimp_common", | 65 "//blimp/common:blimp_common", |
| 66 "//blimp/common/proto", | 66 "//blimp/common/proto", |
| 67 "//net", | 67 "//net", |
| 68 "//ui/base/ime:text_input_types", |
| 68 ] | 69 ] |
| 69 } | 70 } |
| 70 | 71 |
| 71 source_set("test_support") { | 72 source_set("test_support") { |
| 72 testonly = true | 73 testonly = true |
| 73 | 74 |
| 74 sources = [ | 75 sources = [ |
| 75 "test_common.cc", | 76 "test_common.cc", |
| 76 "test_common.h", | 77 "test_common.h", |
| 77 ] | 78 ] |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//base", | 114 "//base", |
| 114 "//base/test:run_all_unittests", | 115 "//base/test:run_all_unittests", |
| 115 "//base/test:test_support", | 116 "//base/test:test_support", |
| 116 "//blimp/common:blimp_common", | 117 "//blimp/common:blimp_common", |
| 117 "//blimp/common/proto", | 118 "//blimp/common/proto", |
| 118 "//net:test_support", | 119 "//net:test_support", |
| 119 "//testing/gmock", | 120 "//testing/gmock", |
| 120 "//testing/gtest", | 121 "//testing/gtest", |
| 121 ] | 122 ] |
| 122 } | 123 } |
| OLD | NEW |