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 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_overrides/v8.gni") | 10 import("//build_overrides/v8.gni") |
(...skipping 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 "proxy/proxy_config_service_common_unittest.h", | 592 "proxy/proxy_config_service_common_unittest.h", |
593 "socket/socket_test_util.cc", | 593 "socket/socket_test_util.cc", |
594 "socket/socket_test_util.h", | 594 "socket/socket_test_util.h", |
595 "test/cert_test_util.cc", | 595 "test/cert_test_util.cc", |
596 "test/cert_test_util.h", | 596 "test/cert_test_util.h", |
597 "test/cert_test_util_nss.cc", | 597 "test/cert_test_util_nss.cc", |
598 "test/channel_id_test_util.cc", | 598 "test/channel_id_test_util.cc", |
599 "test/channel_id_test_util.h", | 599 "test/channel_id_test_util.h", |
600 "test/ct_test_util.cc", | 600 "test/ct_test_util.cc", |
601 "test/ct_test_util.h", | 601 "test/ct_test_util.h", |
| 602 "test/embedded_test_server/default_handlers.cc", |
| 603 "test/embedded_test_server/default_handlers.h", |
602 "test/embedded_test_server/embedded_test_server.cc", | 604 "test/embedded_test_server/embedded_test_server.cc", |
603 "test/embedded_test_server/embedded_test_server.h", | 605 "test/embedded_test_server/embedded_test_server.h", |
604 "test/embedded_test_server/http_connection.cc", | 606 "test/embedded_test_server/http_connection.cc", |
605 "test/embedded_test_server/http_connection.h", | 607 "test/embedded_test_server/http_connection.h", |
606 "test/embedded_test_server/http_request.cc", | 608 "test/embedded_test_server/http_request.cc", |
607 "test/embedded_test_server/http_request.h", | 609 "test/embedded_test_server/http_request.h", |
608 "test/embedded_test_server/http_response.cc", | 610 "test/embedded_test_server/http_response.cc", |
609 "test/embedded_test_server/http_response.h", | 611 "test/embedded_test_server/http_response.h", |
610 "test/embedded_test_server/request_handler_util.cc", | 612 "test/embedded_test_server/request_handler_util.cc", |
611 "test/embedded_test_server/request_handler_util.h", | 613 "test/embedded_test_server/request_handler_util.h", |
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1670 if (enable_websockets) { | 1672 if (enable_websockets) { |
1671 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1673 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1672 } | 1674 } |
1673 | 1675 |
1674 if (use_v8_in_net) { | 1676 if (use_v8_in_net) { |
1675 deps += [ ":net_with_v8" ] | 1677 deps += [ ":net_with_v8" ] |
1676 } else { | 1678 } else { |
1677 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1679 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1678 } | 1680 } |
1679 } | 1681 } |
OLD | NEW |