Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(482)

Side by Side Diff: components/invalidation/BUILD.gn

Issue 459513002: Massive refactor of the Android invalidation code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "sync_invalidation_listener.cc", 68 "sync_invalidation_listener.cc",
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 if (is_android) {
79 sources += [
80 "android/component_jni_registrar.cc",
81 "android/component_jni_registrar.h",
82 "invalidation_service_android.cc",
nyquist 2014/09/04 09:01:56 duplicate. remove
maxbogue 2014/09/05 16:42:45 Done.
83 "invalidation_service_android.h",
84 "invalidation_service_android.cc",
85 ]
86 deps += [ ":jni_headers" ]
87 }
78 88
79 deps = [ 89 deps = [
80 "//base", 90 "//base",
81 "//components/gcm_driver", 91 "//components/gcm_driver",
82 "//components/keyed_service/core", 92 "//components/keyed_service/core",
83 "//components/pref_registry", 93 "//components/pref_registry",
84 "//components/signin/core/browser", 94 "//components/signin/core/browser",
85 "//google_apis", 95 "//google_apis",
86 "//jingle:notifier", 96 "//jingle:notifier",
87 "//third_party/cacheinvalidation", 97 "//third_party/cacheinvalidation",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "//jingle:notifier_test_util", 137 "//jingle:notifier_test_util",
128 "//net", 138 "//net",
129 "//testing/gmock", 139 "//testing/gmock",
130 "//third_party/cacheinvalidation", 140 "//third_party/cacheinvalidation",
131 141
132 # TODO(sync): Remove this (http://crbug.com/133352); 142 # TODO(sync): Remove this (http://crbug.com/133352);
133 "//third_party/protobuf:protobuf_lite", 143 "//third_party/protobuf:protobuf_lite",
134 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid ation_proto_cpp", 144 # "//third_party/cacheinvalidation/src/google/cacheinvalidation:cacheinvalid ation_proto_cpp",
135 ] 145 ]
136 } 146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698