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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "//components/pref_registry", | 83 "//components/pref_registry", |
84 "//components/signin/core/browser", | 84 "//components/signin/core/browser", |
85 "//google_apis", | 85 "//google_apis", |
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 |
| 94 forward_dependent_configs_from = [ |
| 95 "//third_party/cacheinvalidation", |
| 96 ] |
93 } | 97 } |
94 | 98 |
95 static_library("test_support") { | 99 static_library("test_support") { |
96 testonly = true | 100 testonly = true |
97 sources = [ | 101 sources = [ |
98 "fake_invalidation_handler.cc", | 102 "fake_invalidation_handler.cc", |
99 "fake_invalidation_handler.h", | 103 "fake_invalidation_handler.h", |
100 "fake_invalidation_state_tracker.cc", | 104 "fake_invalidation_state_tracker.cc", |
101 "fake_invalidation_state_tracker.h", | 105 "fake_invalidation_state_tracker.h", |
102 "fake_invalidator.cc", | 106 "fake_invalidator.cc", |
(...skipping 25 matching lines...) Expand all Loading... |
128 "//jingle:notifier_test_util", | 132 "//jingle:notifier_test_util", |
129 "//net", | 133 "//net", |
130 "//testing/gmock", | 134 "//testing/gmock", |
131 "//third_party/cacheinvalidation", | 135 "//third_party/cacheinvalidation", |
132 | 136 |
133 # TODO(sync): Remove this (http://crbug.com/133352); | 137 # TODO(sync): Remove this (http://crbug.com/133352); |
134 "//third_party/protobuf:protobuf_lite", | 138 "//third_party/protobuf:protobuf_lite", |
135 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", | 139 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", |
136 ] | 140 ] |
137 } | 141 } |
OLD | NEW |