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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 "sync_invalidation_listener.h", | 69 "sync_invalidation_listener.h", |
70 "sync_system_resources.cc", | 70 "sync_system_resources.cc", |
71 "sync_system_resources.h", | 71 "sync_system_resources.h", |
72 "ticl_invalidation_service.cc", | 72 "ticl_invalidation_service.cc", |
73 "ticl_invalidation_service.h", | 73 "ticl_invalidation_service.h", |
74 "ticl_settings_provider.cc", | 74 "ticl_settings_provider.cc", |
75 "ticl_settings_provider.h", | 75 "ticl_settings_provider.h", |
76 ] | 76 ] |
77 } | 77 } |
78 | 78 |
79 # TODO(GYP) remove this when libjingle is added. | |
80 configs += [ "//content:libjingle_stub_config" ] | |
81 | |
82 deps = [ | 79 deps = [ |
83 "//base", | 80 "//base", |
84 "//components/gcm_driver", | 81 "//components/gcm_driver", |
85 "//components/keyed_service/core", | 82 "//components/keyed_service/core", |
86 "//components/pref_registry", | 83 "//components/pref_registry", |
87 "//components/signin/core/browser", | 84 "//components/signin/core/browser", |
88 "//google_apis", | 85 "//google_apis", |
89 "//jingle:notifier", | 86 "//jingle:notifier", |
90 "//sync", | 87 "//sync", |
91 "//third_party/cacheinvalidation", | 88 "//third_party/cacheinvalidation", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 "//components/keyed_service/core", | 124 "//components/keyed_service/core", |
128 "//google_apis", | 125 "//google_apis", |
129 "//jingle:notifier", | 126 "//jingle:notifier", |
130 "//jingle:notifier_test_util", | 127 "//jingle:notifier_test_util", |
131 "//net", | 128 "//net", |
132 "//sync", | 129 "//sync", |
133 "//testing/gmock", | 130 "//testing/gmock", |
134 "//third_party/cacheinvalidation", | 131 "//third_party/cacheinvalidation", |
135 ] | 132 ] |
136 } | 133 } |
OLD | NEW |