| 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 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "base/load_timing_info_test_util.cc", | 556 "base/load_timing_info_test_util.cc", |
| 557 "base/load_timing_info_test_util.h", | 557 "base/load_timing_info_test_util.h", |
| 558 "base/mock_file_stream.cc", | 558 "base/mock_file_stream.cc", |
| 559 "base/mock_file_stream.h", | 559 "base/mock_file_stream.h", |
| 560 "base/test_completion_callback.cc", | 560 "base/test_completion_callback.cc", |
| 561 "base/test_completion_callback.h", | 561 "base/test_completion_callback.h", |
| 562 "base/test_data_directory.cc", | 562 "base/test_data_directory.cc", |
| 563 "base/test_data_directory.h", | 563 "base/test_data_directory.h", |
| 564 "cert/mock_cert_verifier.cc", | 564 "cert/mock_cert_verifier.cc", |
| 565 "cert/mock_cert_verifier.h", | 565 "cert/mock_cert_verifier.h", |
| 566 "cert/mock_client_cert_verifier.cc", |
| 567 "cert/mock_client_cert_verifier.h", |
| 566 "cookies/cookie_monster_store_test.cc", | 568 "cookies/cookie_monster_store_test.cc", |
| 567 "cookies/cookie_monster_store_test.h", | 569 "cookies/cookie_monster_store_test.h", |
| 568 "cookies/cookie_store_test_callbacks.cc", | 570 "cookies/cookie_store_test_callbacks.cc", |
| 569 "cookies/cookie_store_test_callbacks.h", | 571 "cookies/cookie_store_test_callbacks.h", |
| 570 "cookies/cookie_store_test_helpers.cc", | 572 "cookies/cookie_store_test_helpers.cc", |
| 571 "cookies/cookie_store_test_helpers.h", | 573 "cookies/cookie_store_test_helpers.h", |
| 572 "disk_cache/disk_cache_test_base.cc", | 574 "disk_cache/disk_cache_test_base.cc", |
| 573 "disk_cache/disk_cache_test_base.h", | 575 "disk_cache/disk_cache_test_base.h", |
| 574 "disk_cache/disk_cache_test_util.cc", | 576 "disk_cache/disk_cache_test_util.cc", |
| 575 "disk_cache/disk_cache_test_util.h", | 577 "disk_cache/disk_cache_test_util.h", |
| (...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1661 if (enable_websockets) { | 1663 if (enable_websockets) { |
| 1662 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1664 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1663 } | 1665 } |
| 1664 | 1666 |
| 1665 if (use_v8_in_net) { | 1667 if (use_v8_in_net) { |
| 1666 deps += [ ":net_with_v8" ] | 1668 deps += [ ":net_with_v8" ] |
| 1667 } else { | 1669 } else { |
| 1668 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1670 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1669 } | 1671 } |
| 1670 } | 1672 } |
| OLD | NEW |