| 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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 560 "base/load_timing_info_test_util.cc", | 560 "base/load_timing_info_test_util.cc", |
| 561 "base/load_timing_info_test_util.h", | 561 "base/load_timing_info_test_util.h", |
| 562 "base/mock_file_stream.cc", | 562 "base/mock_file_stream.cc", |
| 563 "base/mock_file_stream.h", | 563 "base/mock_file_stream.h", |
| 564 "base/test_completion_callback.cc", | 564 "base/test_completion_callback.cc", |
| 565 "base/test_completion_callback.h", | 565 "base/test_completion_callback.h", |
| 566 "base/test_data_directory.cc", | 566 "base/test_data_directory.cc", |
| 567 "base/test_data_directory.h", | 567 "base/test_data_directory.h", |
| 568 "cert/mock_cert_verifier.cc", | 568 "cert/mock_cert_verifier.cc", |
| 569 "cert/mock_cert_verifier.h", | 569 "cert/mock_cert_verifier.h", |
| 570 "cert/mock_client_cert_verifier.cc", |
| 571 "cert/mock_client_cert_verifier.h", |
| 570 "cookies/cookie_monster_store_test.cc", | 572 "cookies/cookie_monster_store_test.cc", |
| 571 "cookies/cookie_monster_store_test.h", | 573 "cookies/cookie_monster_store_test.h", |
| 572 "cookies/cookie_store_test_callbacks.cc", | 574 "cookies/cookie_store_test_callbacks.cc", |
| 573 "cookies/cookie_store_test_callbacks.h", | 575 "cookies/cookie_store_test_callbacks.h", |
| 574 "cookies/cookie_store_test_helpers.cc", | 576 "cookies/cookie_store_test_helpers.cc", |
| 575 "cookies/cookie_store_test_helpers.h", | 577 "cookies/cookie_store_test_helpers.h", |
| 576 "disk_cache/disk_cache_test_base.cc", | 578 "disk_cache/disk_cache_test_base.cc", |
| 577 "disk_cache/disk_cache_test_base.h", | 579 "disk_cache/disk_cache_test_base.h", |
| 578 "disk_cache/disk_cache_test_util.cc", | 580 "disk_cache/disk_cache_test_util.cc", |
| 579 "disk_cache/disk_cache_test_util.h", | 581 "disk_cache/disk_cache_test_util.h", |
| (...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1692 if (enable_websockets) { | 1694 if (enable_websockets) { |
| 1693 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1695 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1694 } | 1696 } |
| 1695 | 1697 |
| 1696 if (use_v8_in_net) { | 1698 if (use_v8_in_net) { |
| 1697 deps += [ ":net_with_v8" ] | 1699 deps += [ ":net_with_v8" ] |
| 1698 } else { | 1700 } else { |
| 1699 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1701 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1700 } | 1702 } |
| 1701 } | 1703 } |
| OLD | NEW |