OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("invalidation") { | 5 static_library("invalidation") { |
6 sources = [ | 6 sources = [ |
7 "ack_handle.cc", | 7 "ack_handle.cc", |
8 "ack_handle.h", | 8 "ack_handle.h", |
9 "ack_handler.cc", | 9 "ack_handler.cc", |
10 "ack_handler.h", | 10 "ack_handler.h", |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "//jingle:notifier", | 86 "//jingle:notifier", |
87 "//third_party/cacheinvalidation", | 87 "//third_party/cacheinvalidation", |
88 | 88 |
89 # TODO(sync): Remove this (http://crbug.com/133352); | 89 # TODO(sync): Remove this (http://crbug.com/133352); |
90 "//third_party/protobuf:protobuf_lite", | 90 "//third_party/protobuf:protobuf_lite", |
91 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", | 91 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", |
92 ] | 92 ] |
93 } | 93 } |
94 | 94 |
95 static_library("test_support") { | 95 static_library("test_support") { |
| 96 testonly = true |
96 sources = [ | 97 sources = [ |
97 "fake_invalidation_handler.cc", | 98 "fake_invalidation_handler.cc", |
98 "fake_invalidation_handler.h", | 99 "fake_invalidation_handler.h", |
99 "fake_invalidation_state_tracker.cc", | 100 "fake_invalidation_state_tracker.cc", |
100 "fake_invalidation_state_tracker.h", | 101 "fake_invalidation_state_tracker.h", |
101 "fake_invalidator.cc", | 102 "fake_invalidator.cc", |
102 "fake_invalidator.h", | 103 "fake_invalidator.h", |
103 "invalidation_service_test_template.cc", | 104 "invalidation_service_test_template.cc", |
104 "invalidation_service_test_template.h", | 105 "invalidation_service_test_template.h", |
105 "invalidation_test_util.cc", | 106 "invalidation_test_util.cc", |
(...skipping 21 matching lines...) Expand all Loading... |
127 "//jingle:notifier_test_util", | 128 "//jingle:notifier_test_util", |
128 "//net", | 129 "//net", |
129 "//testing/gmock", | 130 "//testing/gmock", |
130 "//third_party/cacheinvalidation", | 131 "//third_party/cacheinvalidation", |
131 | 132 |
132 # TODO(sync): Remove this (http://crbug.com/133352); | 133 # TODO(sync): Remove this (http://crbug.com/133352); |
133 "//third_party/protobuf:protobuf_lite", | 134 "//third_party/protobuf:protobuf_lite", |
134 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", | 135 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", |
135 ] | 136 ] |
136 } | 137 } |
OLD | NEW |