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