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

Side by Side Diff: components/invalidation.gypi

Issue 1144543009: [Android] Only invalidate objects that were received from Tango on resume. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +toString Created 5 years, 6 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/invalidation 8 # GN version: //components/invalidation
9 'target_name': 'invalidation', 9 'target_name': 'invalidation',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 ], 170 ],
171 }, 171 },
172 ], 172 ],
173 'conditions': [ 173 'conditions': [
174 ['OS == "android"', { 174 ['OS == "android"', {
175 'targets': [ 175 'targets': [
176 { 176 {
177 'target_name': 'invalidation_java', 177 'target_name': 'invalidation_java',
178 'type': 'none', 178 'type': 'none',
179 'dependencies': [ 179 'dependencies': [
180 'invalidation_proto_java',
180 '../base/base.gyp:base', 181 '../base/base.gyp:base',
181 '../sync/sync.gyp:sync_java', 182 '../sync/sync.gyp:sync_java',
182 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_javalib', 183 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_javalib',
183 ], 184 ],
184 'variables': { 185 'variables': {
185 'java_in_dir': 'invalidation/android/java', 186 'java_in_dir': 'invalidation/android/java',
186 }, 187 },
187 'includes': [ '../build/java.gypi' ], 188 'includes': [ '../build/java.gypi' ],
188 }, 189 },
189 { 190 {
191 'target_name': 'invalidation_proto_java',
192 'type': 'none',
193 'sources': [
194 'invalidation/android/proto/serialized_invalidation.proto',
195 ],
196 'includes': [ '../build/protoc_java.gypi' ],
197 },
198 {
190 'target_name': 'invalidation_javatests', 199 'target_name': 'invalidation_javatests',
191 'type': 'none', 200 'type': 'none',
192 'dependencies': [ 201 'dependencies': [
193 'invalidation_java', 202 'invalidation_java',
194 '../base/base.gyp:base_java_test_support', 203 '../base/base.gyp:base_java_test_support',
195 ], 204 ],
196 'variables': { 205 'variables': {
197 'java_in_dir': 'invalidation/android/javatests', 206 'java_in_dir': 'invalidation/android/javatests',
198 }, 207 },
199 'includes': [ '../build/java.gypi' ], 208 'includes': [ '../build/java.gypi' ],
200 }, 209 },
201 { 210 {
211 'target_name': 'invalidation_junit_tests',
212 'type': 'none',
213 'dependencies': [
214 'invalidation_java',
215 '../base/base.gyp:base_java',
216 '../base/base.gyp:base_java_test_support',
217 '../testing/android/junit/junit_test.gyp:junit_test_support',
218 ],
219 'variables': {
220 'main_class': 'org.chromium.testing.local.JunitTestMain',
221 'src_paths': [
222 'invalidation/android/junit/'
223 ],
224 },
225 'includes': [ '../build/host_jar.gypi' ],
226 },
227 {
202 'target_name': 'invalidation_jni_headers', 228 'target_name': 'invalidation_jni_headers',
203 'type': 'none', 229 'type': 'none',
204 'sources': [ 230 'sources': [
205 'invalidation/android/java/src/org/chromium/components/invalidation/ InvalidationService.java', 231 'invalidation/android/java/src/org/chromium/components/invalidation/ InvalidationService.java',
206 ], 232 ],
207 'variables': { 233 'variables': {
208 'jni_gen_package': 'components/invalidation', 234 'jni_gen_package': 'components/invalidation',
209 }, 235 },
210 'includes': [ '../build/jni_generator.gypi' ], 236 'includes': [ '../build/jni_generator.gypi' ],
211 }, 237 },
212 ], 238 ],
213 }, 239 },
214 ], 240 ],
215 ], 241 ],
216 } 242 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698