| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/compiler/compiler.gni") | 7 import("//build/config/compiler/compiler.gni") |
| 8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
| 9 import("//build/config/features.gni") | 9 import("//build/config/features.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 "base/load_timing_info_test_util.cc", | 586 "base/load_timing_info_test_util.cc", |
| 587 "base/load_timing_info_test_util.h", | 587 "base/load_timing_info_test_util.h", |
| 588 "base/mock_file_stream.cc", | 588 "base/mock_file_stream.cc", |
| 589 "base/mock_file_stream.h", | 589 "base/mock_file_stream.h", |
| 590 "base/test_completion_callback.cc", | 590 "base/test_completion_callback.cc", |
| 591 "base/test_completion_callback.h", | 591 "base/test_completion_callback.h", |
| 592 "base/test_data_directory.cc", | 592 "base/test_data_directory.cc", |
| 593 "base/test_data_directory.h", | 593 "base/test_data_directory.h", |
| 594 "cert/mock_cert_verifier.cc", | 594 "cert/mock_cert_verifier.cc", |
| 595 "cert/mock_cert_verifier.h", | 595 "cert/mock_cert_verifier.h", |
| 596 "cert/mock_client_cert_verifier.cc", |
| 597 "cert/mock_client_cert_verifier.h", |
| 596 "cookies/cookie_monster_store_test.cc", | 598 "cookies/cookie_monster_store_test.cc", |
| 597 "cookies/cookie_monster_store_test.h", | 599 "cookies/cookie_monster_store_test.h", |
| 598 "cookies/cookie_store_test_callbacks.cc", | 600 "cookies/cookie_store_test_callbacks.cc", |
| 599 "cookies/cookie_store_test_callbacks.h", | 601 "cookies/cookie_store_test_callbacks.h", |
| 600 "cookies/cookie_store_test_helpers.cc", | 602 "cookies/cookie_store_test_helpers.cc", |
| 601 "cookies/cookie_store_test_helpers.h", | 603 "cookies/cookie_store_test_helpers.h", |
| 602 "cookies/cookie_store_unittest.h", | 604 "cookies/cookie_store_unittest.h", |
| 603 "disk_cache/disk_cache_test_base.cc", | 605 "disk_cache/disk_cache_test_base.cc", |
| 604 "disk_cache/disk_cache_test_base.h", | 606 "disk_cache/disk_cache_test_base.h", |
| 605 "disk_cache/disk_cache_test_util.cc", | 607 "disk_cache/disk_cache_test_util.cc", |
| (...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1732 } else { | 1734 } else { |
| 1733 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1735 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1734 } | 1736 } |
| 1735 } | 1737 } |
| 1736 | 1738 |
| 1737 buildflag_header("features") { | 1739 buildflag_header("features") { |
| 1738 header = "net_features.h" | 1740 header = "net_features.h" |
| 1739 | 1741 |
| 1740 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1742 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
| 1741 } | 1743 } |
| OLD | NEW |