OLD | NEW |
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 Loading... |
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', | |
212 'gcm_driver/crypto/gcm_key_store.cc', | 210 'gcm_driver/crypto/gcm_key_store.cc', |
213 'gcm_driver/crypto/gcm_key_store.h', | 211 'gcm_driver/crypto/gcm_key_store.h', |
214 'gcm_driver/crypto/gcm_message_cryptographer.cc', | 212 'gcm_driver/crypto/gcm_message_cryptographer.cc', |
215 'gcm_driver/crypto/gcm_message_cryptographer.h', | 213 'gcm_driver/crypto/gcm_message_cryptographer.h', |
216 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', | 214 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', |
217 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', | 215 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', |
218 ], | 216 ], |
219 'conditions': [ | 217 'conditions': [ |
220 ['use_openssl==1', { | 218 ['use_openssl==1', { |
221 'sources!': [ | 219 'sources!': [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 'variables': { | 271 'variables': { |
274 'jni_gen_package': 'components/gcm_driver', | 272 'jni_gen_package': 'components/gcm_driver', |
275 }, | 273 }, |
276 'includes': [ '../build/jni_generator.gypi' ], | 274 'includes': [ '../build/jni_generator.gypi' ], |
277 }, | 275 }, |
278 ], | 276 ], |
279 }, | 277 }, |
280 ], | 278 ], |
281 ], | 279 ], |
282 } | 280 } |
OLD | NEW |