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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 "thread_pipe_manager.h", | 62 "thread_pipe_manager.h", |
63 ] | 63 ] |
64 | 64 |
65 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] | 65 defines = [ "BLIMP_NET_IMPLEMENTATION=1" ] |
66 | 66 |
67 deps = [ | 67 deps = [ |
68 "//base", | 68 "//base", |
69 "//blimp/common:blimp_common", | 69 "//blimp/common:blimp_common", |
70 "//blimp/common/proto", | 70 "//blimp/common/proto", |
71 "//net", | 71 "//net", |
| 72 "//third_party/WebKit/public:blink_headers", |
72 "//third_party/zlib", | 73 "//third_party/zlib", |
73 "//ui/base/ime:text_input_types", | 74 "//ui/base/ime:text_input_types", |
74 ] | 75 ] |
75 } | 76 } |
76 | 77 |
77 source_set("test_support") { | 78 source_set("test_support") { |
78 testonly = true | 79 testonly = true |
79 | 80 |
80 sources = [ | 81 sources = [ |
81 "test_common.cc", | 82 "test_common.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 ":blimp_net", | 119 ":blimp_net", |
119 ":test_support", | 120 ":test_support", |
120 "//base", | 121 "//base", |
121 "//base/test:run_all_unittests", | 122 "//base/test:run_all_unittests", |
122 "//base/test:test_support", | 123 "//base/test:test_support", |
123 "//blimp/common:blimp_common", | 124 "//blimp/common:blimp_common", |
124 "//blimp/common/proto", | 125 "//blimp/common/proto", |
125 "//net:test_support", | 126 "//net:test_support", |
126 "//testing/gmock", | 127 "//testing/gmock", |
127 "//testing/gtest", | 128 "//testing/gtest", |
| 129 "//third_party/WebKit/public:blink_headers", |
128 ] | 130 ] |
129 } | 131 } |
OLD | NEW |