| 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 589 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/embedded_test_server.cc", | 602 "test/embedded_test_server/embedded_test_server.cc", |
| 603 "test/embedded_test_server/embedded_test_server.h", | 603 "test/embedded_test_server/embedded_test_server.h", |
| 604 "test/embedded_test_server/http_connection.cc", | 604 "test/embedded_test_server/http_connection.cc", |
| 605 "test/embedded_test_server/http_connection.h", | 605 "test/embedded_test_server/http_connection.h", |
| 606 "test/embedded_test_server/http_request.cc", | 606 "test/embedded_test_server/http_request.cc", |
| 607 "test/embedded_test_server/http_request.h", | 607 "test/embedded_test_server/http_request.h", |
| 608 "test/embedded_test_server/http_response.cc", | 608 "test/embedded_test_server/http_response.cc", |
| 609 "test/embedded_test_server/http_response.h", | 609 "test/embedded_test_server/http_response.h", |
| 610 "test/embedded_test_server/request_handler_util.cc", |
| 611 "test/embedded_test_server/request_handler_util.h", |
| 610 "test/event_waiter.h", | 612 "test/event_waiter.h", |
| 611 "test/net_test_suite.cc", | 613 "test/net_test_suite.cc", |
| 612 "test/net_test_suite.h", | 614 "test/net_test_suite.h", |
| 613 "test/python_utils.cc", | 615 "test/python_utils.cc", |
| 614 "test/python_utils.h", | 616 "test/python_utils.h", |
| 615 "test/url_request/ssl_certificate_error_job.cc", | 617 "test/url_request/ssl_certificate_error_job.cc", |
| 616 "test/url_request/ssl_certificate_error_job.h", | 618 "test/url_request/ssl_certificate_error_job.h", |
| 617 "test/url_request/url_request_failed_job.cc", | 619 "test/url_request/url_request_failed_job.cc", |
| 618 "test/url_request/url_request_failed_job.h", | 620 "test/url_request/url_request_failed_job.h", |
| 619 "test/url_request/url_request_mock_data_job.cc", | 621 "test/url_request/url_request_mock_data_job.cc", |
| (...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1668 if (enable_websockets) { | 1670 if (enable_websockets) { |
| 1669 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1671 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1670 } | 1672 } |
| 1671 | 1673 |
| 1672 if (use_v8_in_net) { | 1674 if (use_v8_in_net) { |
| 1673 deps += [ ":net_with_v8" ] | 1675 deps += [ ":net_with_v8" ] |
| 1674 } else { | 1676 } else { |
| 1675 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1677 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1676 } | 1678 } |
| 1677 } | 1679 } |
| OLD | NEW |