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

Side by Side Diff: components/gcm_driver.gypi

Issue 1244803002: Add parsers for the Encryption and Encryption-Key HTTP headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 }, 194 },
195 { 195 {
196 # GN version: //components/gcm_driver/crypto 196 # GN version: //components/gcm_driver/crypto
197 'target_name': 'gcm_driver_crypto', 197 'target_name': 'gcm_driver_crypto',
198 'type': 'static_library', 198 'type': 'static_library',
199 'dependencies': [ 199 'dependencies': [
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 '../net/net.gyp:net',
204 ], 205 ],
205 'include_dirs': [ 206 'include_dirs': [
206 '..', 207 '..',
207 ], 208 ],
208 'sources': [ 209 'sources': [
209 # Note: file list duplicated in GN build. 210 # Note: file list duplicated in GN build.
211 'gcm_driver/crypto/encryption_header_parsers.cc',
212 'gcm_driver/crypto/encryption_header_parsers.h',
210 'gcm_driver/crypto/gcm_key_store.cc', 213 'gcm_driver/crypto/gcm_key_store.cc',
211 'gcm_driver/crypto/gcm_key_store.h', 214 'gcm_driver/crypto/gcm_key_store.h',
212 'gcm_driver/crypto/gcm_message_cryptographer.cc', 215 'gcm_driver/crypto/gcm_message_cryptographer.cc',
213 'gcm_driver/crypto/gcm_message_cryptographer.h', 216 'gcm_driver/crypto/gcm_message_cryptographer.h',
214 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', 217 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc',
215 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', 218 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc',
216 ], 219 ],
217 'conditions': [ 220 'conditions': [
218 ['use_openssl==1', { 221 ['use_openssl==1', {
219 'sources!': [ 222 'sources!': [
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 'variables': { 274 'variables': {
272 'jni_gen_package': 'components/gcm_driver', 275 'jni_gen_package': 'components/gcm_driver',
273 }, 276 },
274 'includes': [ '../build/jni_generator.gypi' ], 277 'includes': [ '../build/jni_generator.gypi' ],
275 }, 278 },
276 ], 279 ],
277 }, 280 },
278 ], 281 ],
279 ], 282 ],
280 } 283 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698