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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 }, | 205 }, |
206 { | 206 { |
207 # GN version: //components/gcm_driver/crypto | 207 # GN version: //components/gcm_driver/crypto |
208 'target_name': 'gcm_driver_crypto', | 208 'target_name': 'gcm_driver_crypto', |
209 'type': 'static_library', | 209 'type': 'static_library', |
210 'dependencies': [ | 210 'dependencies': [ |
211 'gcm_driver_crypto_proto', | 211 'gcm_driver_crypto_proto', |
212 '../base/base.gyp:base', | 212 '../base/base.gyp:base', |
213 '../components/components.gyp:leveldb_proto', | 213 '../components/components.gyp:leveldb_proto', |
214 '../crypto/crypto.gyp:crypto', | 214 '../crypto/crypto.gyp:crypto', |
| 215 '../net/net.gyp:net', |
215 ], | 216 ], |
216 'include_dirs': [ | 217 'include_dirs': [ |
217 '..', | 218 '..', |
218 ], | 219 ], |
219 'sources': [ | 220 'sources': [ |
220 # Note: file list duplicated in GN build. | 221 # Note: file list duplicated in GN build. |
| 222 'gcm_driver/crypto/encryption_header_parsers.cc', |
| 223 'gcm_driver/crypto/encryption_header_parsers.h', |
221 'gcm_driver/crypto/gcm_encryption_provider.cc', | 224 'gcm_driver/crypto/gcm_encryption_provider.cc', |
222 'gcm_driver/crypto/gcm_encryption_provider.h', | 225 'gcm_driver/crypto/gcm_encryption_provider.h', |
223 'gcm_driver/crypto/gcm_key_store.cc', | 226 'gcm_driver/crypto/gcm_key_store.cc', |
224 'gcm_driver/crypto/gcm_key_store.h', | 227 'gcm_driver/crypto/gcm_key_store.h', |
225 'gcm_driver/crypto/gcm_message_cryptographer.cc', | 228 'gcm_driver/crypto/gcm_message_cryptographer.cc', |
226 'gcm_driver/crypto/gcm_message_cryptographer.h', | 229 'gcm_driver/crypto/gcm_message_cryptographer.h', |
227 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', | 230 'gcm_driver/crypto/gcm_message_cryptographer_nss.cc', |
228 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', | 231 'gcm_driver/crypto/gcm_message_cryptographer_openssl.cc', |
229 ], | 232 ], |
230 'conditions': [ | 233 'conditions': [ |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 'variables': { | 287 'variables': { |
285 'jni_gen_package': 'components/gcm_driver', | 288 'jni_gen_package': 'components/gcm_driver', |
286 }, | 289 }, |
287 'includes': [ '../build/jni_generator.gypi' ], | 290 'includes': [ '../build/jni_generator.gypi' ], |
288 }, | 291 }, |
289 ], | 292 ], |
290 }, | 293 }, |
291 ], | 294 ], |
292 ], | 295 ], |
293 } | 296 } |
OLD | NEW |