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

Side by Side Diff: net/BUILD.gn

Issue 1376593007: SSL in EmbeddedTestServer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 2 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
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/chromecast_build.gni") 5 import("//build/config/chromecast_build.gni")
6 import("//build/config/compiler/compiler.gni") 6 import("//build/config/compiler/compiler.gni")
7 import("//build/config/crypto.gni") 7 import("//build/config/crypto.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/module_args/v8.gni") 10 import("//build/module_args/v8.gni")
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 "test/ct_test_util.cc", 598 "test/ct_test_util.cc",
599 "test/ct_test_util.h", 599 "test/ct_test_util.h",
600 "test/embedded_test_server/embedded_test_server.cc", 600 "test/embedded_test_server/embedded_test_server.cc",
601 "test/embedded_test_server/embedded_test_server.h", 601 "test/embedded_test_server/embedded_test_server.h",
602 "test/embedded_test_server/http_connection.cc", 602 "test/embedded_test_server/http_connection.cc",
603 "test/embedded_test_server/http_connection.h", 603 "test/embedded_test_server/http_connection.h",
604 "test/embedded_test_server/http_request.cc", 604 "test/embedded_test_server/http_request.cc",
605 "test/embedded_test_server/http_request.h", 605 "test/embedded_test_server/http_request.h",
606 "test/embedded_test_server/http_response.cc", 606 "test/embedded_test_server/http_response.cc",
607 "test/embedded_test_server/http_response.h", 607 "test/embedded_test_server/http_response.h",
608 "test/embedded_test_server/request_helpers.cc",
609 "test/embedded_test_server/request_helpers.h",
608 "test/event_waiter.h", 610 "test/event_waiter.h",
609 "test/net_test_suite.cc", 611 "test/net_test_suite.cc",
610 "test/net_test_suite.h", 612 "test/net_test_suite.h",
611 "test/python_utils.cc", 613 "test/python_utils.cc",
612 "test/python_utils.h", 614 "test/python_utils.h",
613 "test/url_request/ssl_certificate_error_job.cc", 615 "test/url_request/ssl_certificate_error_job.cc",
614 "test/url_request/ssl_certificate_error_job.h", 616 "test/url_request/ssl_certificate_error_job.h",
615 "test/url_request/url_request_failed_job.cc", 617 "test/url_request/url_request_failed_job.cc",
616 "test/url_request/url_request_failed_job.h", 618 "test/url_request/url_request_failed_job.h",
617 "test/url_request/url_request_mock_data_job.cc", 619 "test/url_request/url_request_mock_data_job.cc",
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1638 if (enable_websockets) { 1640 if (enable_websockets) {
1639 sources += [ "websockets/websocket_frame_perftest.cc" ] 1641 sources += [ "websockets/websocket_frame_perftest.cc" ]
1640 } 1642 }
1641 1643
1642 if (use_v8_in_net) { 1644 if (use_v8_in_net) {
1643 deps += [ ":net_with_v8" ] 1645 deps += [ ":net_with_v8" ]
1644 } else { 1646 } else {
1645 sources -= [ "proxy/proxy_resolver_perftest.cc" ] 1647 sources -= [ "proxy/proxy_resolver_perftest.cc" ]
1646 } 1648 }
1647 } 1649 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698