| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("impl") { | 9 source_set("impl") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//base:i18n", | 41 "//base:i18n", |
| 42 "//components/data_use_measurement/core", | 42 "//components/data_use_measurement/core", |
| 43 "//components/gcm_driver", | 43 "//components/gcm_driver", |
| 44 "//components/keyed_service/core", | 44 "//components/keyed_service/core", |
| 45 "//components/pref_registry", | 45 "//components/pref_registry", |
| 46 "//components/prefs", | 46 "//components/prefs", |
| 47 "//components/signin/core/browser", | 47 "//components/signin/core/browser", |
| 48 "//google_apis", | 48 "//google_apis", |
| 49 "//jingle:notifier", | 49 |
| 50 #"//jingle:notifier", |
| 50 "//net:net", | 51 "//net:net", |
| 51 | 52 |
| 52 # TODO(sync): Remove this (http://crbug.com/133352); | 53 # TODO(sync): Remove this (http://crbug.com/133352); |
| 53 "//third_party/protobuf:protobuf_lite", | 54 "//third_party/protobuf:protobuf_lite", |
| 54 ] | 55 ] |
| 55 | 56 |
| 56 if (!is_android) { | 57 if (!is_android) { |
| 57 sources += [ | 58 sources += [ |
| 58 "gcm_invalidation_bridge.cc", | 59 "gcm_invalidation_bridge.cc", |
| 59 "gcm_invalidation_bridge.h", | 60 "gcm_invalidation_bridge.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 "invalidator_test_template.cc", | 165 "invalidator_test_template.cc", |
| 165 "invalidator_test_template.h", | 166 "invalidator_test_template.h", |
| 166 "object_id_invalidation_map_test_util.cc", | 167 "object_id_invalidation_map_test_util.cc", |
| 167 "object_id_invalidation_map_test_util.h", | 168 "object_id_invalidation_map_test_util.h", |
| 168 "unacked_invalidation_set_test_util.cc", | 169 "unacked_invalidation_set_test_util.cc", |
| 169 "unacked_invalidation_set_test_util.h", | 170 "unacked_invalidation_set_test_util.h", |
| 170 ] | 171 ] |
| 171 | 172 |
| 172 public_deps = [ | 173 public_deps = [ |
| 173 ":impl", | 174 ":impl", |
| 174 "//jingle:notifier_test_util", | 175 |
| 176 #"//jingle:notifier_test_util", |
| 175 "//third_party/cacheinvalidation", | 177 "//third_party/cacheinvalidation", |
| 176 ] | 178 ] |
| 177 deps = [ | 179 deps = [ |
| 178 "//base", | 180 "//base", |
| 179 "//components/gcm_driver:test_support", | 181 "//components/gcm_driver:test_support", |
| 180 "//components/keyed_service/core", | 182 "//components/keyed_service/core", |
| 181 "//components/signin/core/browser:test_support", | 183 "//components/signin/core/browser:test_support", |
| 182 "//google_apis", | 184 "//google_apis", |
| 183 "//google_apis:test_support", | 185 "//google_apis:test_support", |
| 184 "//jingle:notifier", | 186 |
| 187 #"//jingle:notifier", |
| 185 "//net", | 188 "//net", |
| 186 "//testing/gmock", | 189 "//testing/gmock", |
| 187 "//testing/gtest", | 190 "//testing/gtest", |
| 188 | 191 |
| 189 # TODO(sync): Remove this (http://crbug.com/133352); | 192 # TODO(sync): Remove this (http://crbug.com/133352); |
| 190 "//third_party/protobuf:protobuf_lite", | 193 "//third_party/protobuf:protobuf_lite", |
| 191 | 194 |
| 192 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", | 195 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid
ation_proto_cpp", |
| 193 ] | 196 ] |
| 194 | 197 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 "//base:base_java_test_support", | 243 "//base:base_java_test_support", |
| 241 ] | 244 ] |
| 242 } | 245 } |
| 243 generate_jni("jni_headers") { | 246 generate_jni("jni_headers") { |
| 244 sources = [ | 247 sources = [ |
| 245 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", | 248 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", |
| 246 ] | 249 ] |
| 247 jni_package = "components/invalidation" | 250 jni_package = "components/invalidation" |
| 248 } | 251 } |
| 249 } | 252 } |
| OLD | NEW |