Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/chrome_common.gypi

Issue 1893203005: Remove x509_certificate_model_openssl.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove tests Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'variables': { 6 'variables': {
7 # File lists shared with GN build. 7 # File lists shared with GN build.
8 'chrome_common_sources': [ 8 'chrome_common_sources': [
9 'common/all_messages.h', 9 'common/all_messages.h',
10 'common/attrition_experiments.h', 10 'common/attrition_experiments.h',
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 { 557 {
558 # GN version: //chrome/common/net 558 # GN version: //chrome/common/net
559 'target_name': 'common_net', 559 'target_name': 'common_net',
560 'type': 'static_library', 560 'type': 'static_library',
561 'sources': [ 561 'sources': [
562 'common/net/net_resource_provider.cc', 562 'common/net/net_resource_provider.cc',
563 'common/net/net_resource_provider.h', 563 'common/net/net_resource_provider.h',
564 'common/net/x509_certificate_model.cc', 564 'common/net/x509_certificate_model.cc',
565 'common/net/x509_certificate_model.h', 565 'common/net/x509_certificate_model.h',
566 'common/net/x509_certificate_model_nss.cc', 566 'common/net/x509_certificate_model_nss.cc',
567 'common/net/x509_certificate_model_openssl.cc',
568 ], 567 ],
569 'dependencies': [ 568 'dependencies': [
570 '<(DEPTH)/base/base.gyp:base', 569 '<(DEPTH)/base/base.gyp:base',
571 '<(DEPTH)/chrome/chrome_features.gyp:chrome_common_features', 570 '<(DEPTH)/chrome/chrome_features.gyp:chrome_common_features',
572 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources', 571 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
573 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings', 572 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
574 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter', 573 '<(DEPTH)/components/url_formatter/url_formatter.gyp:url_formatter',
575 '<(DEPTH)/crypto/crypto.gyp:crypto', 574 '<(DEPTH)/crypto/crypto.gyp:crypto',
576 '<(DEPTH)/net/net.gyp:net', 575 '<(DEPTH)/net/net.gyp:net',
577 '<(DEPTH)/net/net.gyp:net_resources', 576 '<(DEPTH)/net/net.gyp:net_resources',
578 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 577 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
579 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 578 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
580 '<(DEPTH)/ui/base/ui_base.gyp:ui_base', 579 '<(DEPTH)/ui/base/ui_base.gyp:ui_base',
581 ], 580 ],
582 'conditions': [ 581 'conditions': [
583 ['OS == "ios"', { 582 ['OS == "ios"', {
584 'sources!': [ 583 'sources!': [
585 'common/net/net_resource_provider.cc', 584 'common/net/net_resource_provider.cc',
586 ], 585 ],
587 }], 586 }],
588 ['OS == "android" or OS == "ios"', { 587 ['OS == "android" or OS == "ios"', {
589 'sources!': [ 588 'sources!': [
590 'common/net/x509_certificate_model.cc', 589 'common/net/x509_certificate_model.cc',
591 ], 590 ],
592 }], 591 }],
593 ['use_openssl_certs == 1 and OS != "android"', {
594 'dependencies': [
595 '<(DEPTH)/third_party/boringssl/boringssl.gyp:boringssl',
596 ],
597 }, {
598 'sources!': [
599 'common/net/x509_certificate_model_openssl.cc',
600 ],
601 }],
602 ['use_nss_certs == 1', { 592 ['use_nss_certs == 1', {
603 'sources': [ 593 'sources': [
604 # GN version: //chrome/third_party/mozilla_security_manager 594 # GN version: //chrome/third_party/mozilla_security_manager
605 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp', 595 'third_party/mozilla_security_manager/nsNSSCertHelper.cpp',
606 'third_party/mozilla_security_manager/nsNSSCertHelper.h', 596 'third_party/mozilla_security_manager/nsNSSCertHelper.h',
607 'third_party/mozilla_security_manager/nsNSSCertificate.cpp', 597 'third_party/mozilla_security_manager/nsNSSCertificate.cpp',
608 'third_party/mozilla_security_manager/nsNSSCertificate.h', 598 'third_party/mozilla_security_manager/nsNSSCertificate.h',
609 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp', 599 'third_party/mozilla_security_manager/nsUsageArrayHelper.cpp',
610 'third_party/mozilla_security_manager/nsUsageArrayHelper.h', 600 'third_party/mozilla_security_manager/nsUsageArrayHelper.h',
611 ], 601 ],
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 ], 663 ],
674 'dependencies': [ 664 'dependencies': [
675 'installer_util', 665 'installer_util',
676 '../base/base.gyp:base', 666 '../base/base.gyp:base',
677 ], 667 ],
678 }, 668 },
679 ], 669 ],
680 }], 670 }],
681 ], 671 ],
682 } 672 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698