| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'target_name': 'common', | 8 'target_name': 'common', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { | 10 'variables': { |
| (...skipping 619 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 630 'common/net/x509_certificate_model_openssl.cc', | 630 'common/net/x509_certificate_model_openssl.cc', |
| 631 ], | 631 ], |
| 632 }, | 632 }, |
| 633 ], | 633 ], |
| 634 ['OS == "android"', { | 634 ['OS == "android"', { |
| 635 'dependencies': [ | 635 'dependencies': [ |
| 636 '../third_party/openssl/openssl.gyp:openssl', | 636 '../third_party/openssl/openssl.gyp:openssl', |
| 637 ], | 637 ], |
| 638 'sources!': [ | 638 'sources!': [ |
| 639 'common/net/x509_certificate_model.cc', | 639 'common/net/x509_certificate_model.cc', |
| 640 'common/net/x509_certificate_model_openssl.cc', |
| 640 ], | 641 ], |
| 641 }], | 642 }], |
| 642 ['use_openssl==1', { | 643 ['use_openssl==1', { |
| 643 'sources!': [ | 644 'sources!': [ |
| 644 # networking_private_crypto.cc uses NSS functions. | 645 # networking_private_crypto.cc uses NSS functions. |
| 645 'common/extensions/api/networking_private/networking_private_crypt
o.cc', | 646 'common/extensions/api/networking_private/networking_private_crypt
o.cc', |
| 646 'common/net/x509_certificate_model_nss.cc', | 647 'common/net/x509_certificate_model_nss.cc', |
| 647 ], | 648 ], |
| 648 }, | 649 }, |
| 649 { # else !use_openssl: remove the unneeded files | 650 { # else !use_openssl: remove the unneeded files |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 'common/metrics/proto/chrome_experiments.proto', | 685 'common/metrics/proto/chrome_experiments.proto', |
| 685 ], | 686 ], |
| 686 'variables': { | 687 'variables': { |
| 687 'proto_in_dir': 'common/metrics/proto', | 688 'proto_in_dir': 'common/metrics/proto', |
| 688 'proto_out_dir': 'chrome/common/metrics/proto', | 689 'proto_out_dir': 'chrome/common/metrics/proto', |
| 689 }, | 690 }, |
| 690 'includes': [ '../build/protoc.gypi' ], | 691 'includes': [ '../build/protoc.gypi' ], |
| 691 }, | 692 }, |
| 692 ], | 693 ], |
| 693 } | 694 } |
| OLD | NEW |