| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'base/network_change_notifier_mac.cc', | 133 'base/network_change_notifier_mac.cc', |
| 134 'base/network_change_notifier_mac.h', | 134 'base/network_change_notifier_mac.h', |
| 135 'base/network_change_notifier_netlink_linux.cc', | 135 'base/network_change_notifier_netlink_linux.cc', |
| 136 'base/network_change_notifier_netlink_linux.h', | 136 'base/network_change_notifier_netlink_linux.h', |
| 137 'base/network_change_notifier_win.cc', | 137 'base/network_change_notifier_win.cc', |
| 138 'base/network_change_notifier_win.h', | 138 'base/network_change_notifier_win.h', |
| 139 'base/network_config_watcher_mac.cc', | 139 'base/network_config_watcher_mac.cc', |
| 140 'base/network_config_watcher_mac.h', | 140 'base/network_config_watcher_mac.h', |
| 141 'base/nss_memio.c', | 141 'base/nss_memio.c', |
| 142 'base/nss_memio.h', | 142 'base/nss_memio.h', |
| 143 'base/openssl_memory_private_key_store.cc', |
| 144 'base/openssl_private_key_store.h', |
| 143 'base/pem_tokenizer.cc', | 145 'base/pem_tokenizer.cc', |
| 144 'base/pem_tokenizer.h', | 146 'base/pem_tokenizer.h', |
| 145 'base/platform_mime_util.h', | 147 'base/platform_mime_util.h', |
| 146 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types? | 148 # TODO(tc): gnome-vfs? xdgmime? /etc/mime.types? |
| 147 'base/platform_mime_util_linux.cc', | 149 'base/platform_mime_util_linux.cc', |
| 148 'base/platform_mime_util_mac.cc', | 150 'base/platform_mime_util_mac.cc', |
| 149 'base/platform_mime_util_win.cc', | 151 'base/platform_mime_util_win.cc', |
| 150 'base/registry_controlled_domain.cc', | 152 'base/registry_controlled_domain.cc', |
| 151 'base/registry_controlled_domain.h', | 153 'base/registry_controlled_domain.h', |
| 152 'base/scoped_cert_chain_context.h', | 154 'base/scoped_cert_chain_context.h', |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', | 278 'third_party/mozilla_security_manager/nsNSSCertTrust.cpp', |
| 277 'third_party/mozilla_security_manager/nsNSSCertTrust.h', | 279 'third_party/mozilla_security_manager/nsNSSCertTrust.h', |
| 278 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', | 280 'third_party/mozilla_security_manager/nsPKCS12Blob.cpp', |
| 279 'third_party/mozilla_security_manager/nsPKCS12Blob.h', | 281 'third_party/mozilla_security_manager/nsPKCS12Blob.h', |
| 280 ], | 282 ], |
| 281 }, | 283 }, |
| 282 { # else: not using openssl. | 284 { # else: not using openssl. |
| 283 'sources!': [ | 285 'sources!': [ |
| 284 'base/cert_database_openssl.cc', | 286 'base/cert_database_openssl.cc', |
| 285 'base/keygen_handler_openssl.cc', | 287 'base/keygen_handler_openssl.cc', |
| 288 'base/openssl_memory_private_key_store.cc', |
| 289 'base/openssl_private_key_store.h', |
| 286 'base/x509_certificate_openssl.cc', | 290 'base/x509_certificate_openssl.cc', |
| 287 'base/x509_openssl_util.cc', | 291 'base/x509_openssl_util.cc', |
| 288 'base/x509_openssl_util.h', | 292 'base/x509_openssl_util.h', |
| 289 ], | 293 ], |
| 290 }, | 294 }, |
| 291 ], | 295 ], |
| 292 [ 'OS == "win"', { | 296 [ 'OS == "win"', { |
| 293 'dependencies': [ | 297 'dependencies': [ |
| 294 '../third_party/nss/nss.gyp:nss', | 298 '../third_party/nss/nss.gyp:nss', |
| 295 'tld_cleanup', | 299 'tld_cleanup', |
| (...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1446 ], | 1450 ], |
| 1447 }], | 1451 }], |
| 1448 ], | 1452 ], |
| 1449 } | 1453 } |
| 1450 | 1454 |
| 1451 # Local Variables: | 1455 # Local Variables: |
| 1452 # tab-width:2 | 1456 # tab-width:2 |
| 1453 # indent-tabs-mode:nil | 1457 # indent-tabs-mode:nil |
| 1454 # End: | 1458 # End: |
| 1455 # vim: set expandtab tabstop=2 shiftwidth=2: | 1459 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |