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

Side by Side Diff: net/BUILD.gn

Issue 394013005: Remove NSSCertDatabase from ClientCertStoreChromeOS unittest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Broke binary files into separate CL. Rebased. Created 6 years, 5 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 | Annotate | Revision Log
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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//url/config.gni") 8 import("//url/config.gni")
9 9
10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni. 10 # TODO(cjhopman): //build/config/android/rules.gni also imports grit_rule.gni.
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after
632 "proxy/mock_proxy_resolver.cc", 632 "proxy/mock_proxy_resolver.cc",
633 "proxy/mock_proxy_resolver.h", 633 "proxy/mock_proxy_resolver.h",
634 "proxy/mock_proxy_script_fetcher.cc", 634 "proxy/mock_proxy_script_fetcher.cc",
635 "proxy/mock_proxy_script_fetcher.h", 635 "proxy/mock_proxy_script_fetcher.h",
636 "proxy/proxy_config_service_common_unittest.cc", 636 "proxy/proxy_config_service_common_unittest.cc",
637 "proxy/proxy_config_service_common_unittest.h", 637 "proxy/proxy_config_service_common_unittest.h",
638 "socket/socket_test_util.cc", 638 "socket/socket_test_util.cc",
639 "socket/socket_test_util.h", 639 "socket/socket_test_util.h",
640 "test/cert_test_util.cc", 640 "test/cert_test_util.cc",
641 "test/cert_test_util.h", 641 "test/cert_test_util.h",
642 "test/cert_test_util_nss.cc",
642 "test/ct_test_util.cc", 643 "test/ct_test_util.cc",
643 "test/ct_test_util.h", 644 "test/ct_test_util.h",
644 "test/embedded_test_server/embedded_test_server.cc", 645 "test/embedded_test_server/embedded_test_server.cc",
645 "test/embedded_test_server/embedded_test_server.h", 646 "test/embedded_test_server/embedded_test_server.h",
646 "test/embedded_test_server/http_connection.cc", 647 "test/embedded_test_server/http_connection.cc",
647 "test/embedded_test_server/http_connection.h", 648 "test/embedded_test_server/http_connection.h",
648 "test/embedded_test_server/http_request.cc", 649 "test/embedded_test_server/http_request.cc",
649 "test/embedded_test_server/http_request.h", 650 "test/embedded_test_server/http_request.h",
650 "test/embedded_test_server/http_response.cc", 651 "test/embedded_test_server/http_response.cc",
651 "test/embedded_test_server/http_response.h", 652 "test/embedded_test_server/http_response.h",
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 deps += [ ":net_with_v8" ] 701 deps += [ ":net_with_v8" ]
701 } 702 }
702 703
703 if (!enable_mdns) { 704 if (!enable_mdns) {
704 sources -= [ 705 sources -= [
705 "dns/mock_mdns_socket_factory.cc", 706 "dns/mock_mdns_socket_factory.cc",
706 "dns/mock_mdns_socket_factory.h", 707 "dns/mock_mdns_socket_factory.h",
707 ] 708 ]
708 } 709 }
709 710
711 if (!use_nss_certs) {
712 sources -= [
713 "test/cert_test_util_nss.cc",
714 ]
715 }
716
710 forward_dependent_configs_from = deps 717 forward_dependent_configs_from = deps
711 } 718 }
712 719
713 source_set("balsa") { 720 source_set("balsa") {
714 sources = [ 721 sources = [
715 "tools/balsa/balsa_enums.h", 722 "tools/balsa/balsa_enums.h",
716 "tools/balsa/balsa_frame.cc", 723 "tools/balsa/balsa_frame.cc",
717 "tools/balsa/balsa_frame.h", 724 "tools/balsa/balsa_frame.h",
718 "tools/balsa/balsa_headers.cc", 725 "tools/balsa/balsa_headers.cc",
719 "tools/balsa/balsa_headers.h", 726 "tools/balsa/balsa_headers.h",
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
1325 sources = [ "quic/quic_server_bin.cc" ] 1332 sources = [ "quic/quic_server_bin.cc" ]
1326 deps = [ 1333 deps = [
1327 ":quic_tools", 1334 ":quic_tools",
1328 ":net", 1335 ":net",
1329 "//base", 1336 "//base",
1330 "//third_party/openssl", 1337 "//third_party/openssl",
1331 ] 1338 ]
1332 } 1339 }
1333 1340
1334 } # !is_android 1341 } # !is_android
OLDNEW
« no previous file with comments | « crypto/nss_util.cc ('k') | net/net.gyp » ('j') | net/ssl/client_cert_store_chromeos.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698