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 if (is_android) { | 4 if (is_android) { |
5 import("//build/config/android/rules.gni") | 5 import("//build/config/android/rules.gni") |
6 } | 6 } |
7 | 7 |
8 source_set("impl") { | 8 source_set("impl") { |
9 sources = [ | 9 sources = [ |
10 "invalidation_logger.cc", | 10 "invalidation_logger.cc", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "ticl_settings_provider.h", | 61 "ticl_settings_provider.h", |
62 ] | 62 ] |
63 } | 63 } |
64 public_deps = [ | 64 public_deps = [ |
65 "//components/invalidation/public", | 65 "//components/invalidation/public", |
66 ] | 66 ] |
67 deps = [ | 67 deps = [ |
68 "//base", | 68 "//base", |
69 "//base:i18n", | 69 "//base:i18n", |
70 "//base:prefs", | 70 "//base:prefs", |
| 71 "//components/data_use_measurement/core", |
71 "//components/gcm_driver", | 72 "//components/gcm_driver", |
72 "//components/keyed_service/core", | 73 "//components/keyed_service/core", |
73 "//components/pref_registry", | 74 "//components/pref_registry", |
74 "//components/signin/core/browser", | 75 "//components/signin/core/browser", |
75 "//google_apis", | 76 "//google_apis", |
76 "//jingle:notifier", | 77 "//jingle:notifier", |
77 "//net:net", | 78 "//net:net", |
78 | 79 |
79 # TODO(sync): Remove this (http://crbug.com/133352); | 80 # TODO(sync): Remove this (http://crbug.com/133352); |
80 "//third_party/protobuf:protobuf_lite", | 81 "//third_party/protobuf:protobuf_lite", |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 "//base:base_java_test_support", | 217 "//base:base_java_test_support", |
217 ] | 218 ] |
218 } | 219 } |
219 generate_jni("jni_headers") { | 220 generate_jni("jni_headers") { |
220 sources = [ | 221 sources = [ |
221 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", | 222 "android/java/src/org/chromium/components/invalidation/InvalidationService
.java", |
222 ] | 223 ] |
223 jni_package = "components/invalidation" | 224 jni_package = "components/invalidation" |
224 } | 225 } |
225 } | 226 } |
OLD | NEW |