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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 }, | 197 }, |
198 { | 198 { |
199 # GN version: //components/gcm_driver/crypto | 199 # GN version: //components/gcm_driver/crypto |
200 'target_name': 'gcm_driver_crypto', | 200 'target_name': 'gcm_driver_crypto', |
201 'type': 'static_library', | 201 'type': 'static_library', |
202 'dependencies': [ | 202 'dependencies': [ |
203 'gcm_driver_crypto_proto', | 203 'gcm_driver_crypto_proto', |
204 '../base/base.gyp:base', | 204 '../base/base.gyp:base', |
205 '../components/components.gyp:leveldb_proto', | 205 '../components/components.gyp:leveldb_proto', |
206 '../crypto/crypto.gyp:crypto', | 206 '../crypto/crypto.gyp:crypto', |
| 207 '../net/net.gyp:net', |
207 ], | 208 ], |
208 'include_dirs': [ | 209 'include_dirs': [ |
209 '..', | 210 '..', |
210 ], | 211 ], |
211 'sources': [ | 212 'sources': [ |
212 # Note: file list duplicated in GN build. | 213 # Note: file list duplicated in GN build. |
| 214 'gcm_driver/crypto/encryption_header_parsers.cc', |
| 215 'gcm_driver/crypto/encryption_header_parsers.h', |
213 'gcm_driver/crypto/gcm_encryption_provider.cc', | 216 'gcm_driver/crypto/gcm_encryption_provider.cc', |
214 'gcm_driver/crypto/gcm_encryption_provider.h', | 217 'gcm_driver/crypto/gcm_encryption_provider.h', |
215 'gcm_driver/crypto/gcm_key_store.cc', | 218 'gcm_driver/crypto/gcm_key_store.cc', |
216 'gcm_driver/crypto/gcm_key_store.h', | 219 'gcm_driver/crypto/gcm_key_store.h', |
217 'gcm_driver/crypto/gcm_message_cryptographer.cc', | 220 'gcm_driver/crypto/gcm_message_cryptographer.cc', |
218 'gcm_driver/crypto/gcm_message_cryptographer.h', | 221 'gcm_driver/crypto/gcm_message_cryptographer.h', |
219 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', | 222 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', |
220 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', | 223 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', |
221 ], | 224 ], |
222 'conditions': [ | 225 'conditions': [ |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 'variables': { | 279 'variables': { |
277 'jni_gen_package': 'components/gcm_driver', | 280 'jni_gen_package': 'components/gcm_driver', |
278 }, | 281 }, |
279 'includes': [ '../build/jni_generator.gypi' ], | 282 'includes': [ '../build/jni_generator.gypi' ], |
280 }, | 283 }, |
281 ], | 284 ], |
282 }, | 285 }, |
283 ], | 286 ], |
284 ], | 287 ], |
285 } | 288 } |
OLD | NEW |