OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 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 'variables': { | 6 'variables': { |
7 # This library should build cleanly with the extra warnings turned on | 7 # This library should build cleanly with the extra warnings turned on |
8 # for Chromium. | 8 # for Chromium. |
9 'chromium_code': 1, | 9 'chromium_code': 1, |
10 }, | 10 }, |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 { | 200 { |
201 'target_name': 'cacheinvalidation_javalib', | 201 'target_name': 'cacheinvalidation_javalib', |
202 'type': 'none', | 202 'type': 'none', |
203 'dependencies': [ | 203 'dependencies': [ |
204 '../../third_party/android_tools/android_tools.gyp:android_gcm', | 204 '../../third_party/android_tools/android_tools.gyp:android_gcm', |
205 '../../third_party/guava/guava.gyp:guava_javalib', | 205 '../../third_party/guava/guava.gyp:guava_javalib', |
206 'cacheinvalidation_aidl_javalib', | 206 'cacheinvalidation_aidl_javalib', |
207 'cacheinvalidation_proto_java', | 207 'cacheinvalidation_proto_java', |
208 ], | 208 ], |
209 'variables': { | 209 'variables': { |
210 'package_name': '<(_target_name)', | |
211 'java_in_dir': '../../build/android/empty', | 210 'java_in_dir': '../../build/android/empty', |
212 'additional_src_dirs': [ 'src/java/' ], | 211 'additional_src_dirs': [ 'src/java/' ], |
213 }, | 212 }, |
214 'includes': [ '../../build/java.gypi' ], | 213 'includes': [ '../../build/java.gypi' ], |
215 }, | 214 }, |
216 { | 215 { |
217 'target_name': 'cacheinvalidation_aidl_javalib', | 216 'target_name': 'cacheinvalidation_aidl_javalib', |
218 'type': 'none', | 217 'type': 'none', |
219 'variables': { | 218 'variables': { |
220 'package_name': '<(_target_name)', | |
221 # TODO(shashishekhar): aidl_interface_file should be made optional. | 219 # TODO(shashishekhar): aidl_interface_file should be made optional. |
222 'aidl_interface_file':'<(android_sdk)/framework.aidl' | 220 'aidl_interface_file':'<(android_sdk)/framework.aidl' |
223 }, | 221 }, |
224 'sources': [ | 222 'sources': [ |
225 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', | 223 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/InvalidationService.aidl', |
226 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', | 224 'src/java/com/google/ipc/invalidation/external/client/android/servic
e/ListenerService.aidl', |
227 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', | 225 'src/java/com/google/ipc/invalidation/testing/android/InvalidationTe
st.aidl', |
228 ], | 226 ], |
229 'includes': [ '../../build/java_aidl.gypi' ], | 227 'includes': [ '../../build/java_aidl.gypi' ], |
230 }, | 228 }, |
231 ], | 229 ], |
232 }], | 230 }], |
233 ], | 231 ], |
234 } | 232 } |
OLD | NEW |