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

Side by Side Diff: components/gcm_driver.gypi

Issue 1231613005: Hook up the Push API with GCM's new ability to own encryption keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gcm-encryption
Patch Set: comments + win fix Created 5 years, 5 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/gcm_driver:common 8 # GN version: //components/gcm_driver:common
9 'target_name': 'gcm_driver_common', 9 'target_name': 'gcm_driver_common',
10 'type': '<(component)', 10 'type': '<(component)',
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'gcm_driver_crypto_proto', 200 'gcm_driver_crypto_proto',
201 '../base/base.gyp:base', 201 '../base/base.gyp:base',
202 '../components/components.gyp:leveldb_proto', 202 '../components/components.gyp:leveldb_proto',
203 '../crypto/crypto.gyp:crypto', 203 '../crypto/crypto.gyp:crypto',
204 ], 204 ],
205 'include_dirs': [ 205 'include_dirs': [
206 '..', 206 '..',
207 ], 207 ],
208 'sources': [ 208 'sources': [
209 # Note: file list duplicated in GN build. 209 # Note: file list duplicated in GN build.
210 'gcm_driver/crypto/gcm_encryption_provider.cc',
211 'gcm_driver/crypto/gcm_encryption_provider.h',
210 'gcm_driver/crypto/gcm_key_store.cc', 212 'gcm_driver/crypto/gcm_key_store.cc',
211 'gcm_driver/crypto/gcm_key_store.h', 213 'gcm_driver/crypto/gcm_key_store.h',
212 'gcm_driver/crypto/gcm_message_cryptographer.cc', 214 'gcm_driver/crypto/gcm_message_cryptographer.cc',
213 'gcm_driver/crypto/gcm_message_cryptographer.h', 215 'gcm_driver/crypto/gcm_message_cryptographer.h',
214 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', 216 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc',
215 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', 217 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc',
216 ], 218 ],
217 'conditions': [ 219 'conditions': [
218 ['use_openssl==1', { 220 ['use_openssl==1', {
219 'sources!': [ 221 'sources!': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 'variables': { 273 'variables': {
272 'jni_gen_package': 'components/gcm_driver', 274 'jni_gen_package': 'components/gcm_driver',
273 }, 275 },
274 'includes': [ '../build/jni_generator.gypi' ], 276 'includes': [ '../build/jni_generator.gypi' ],
275 }, 277 },
276 ], 278 ],
277 }, 279 },
278 ], 280 ],
279 ], 281 ],
280 } 282 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698