| 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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 "//third_party/icu", | 491 "//third_party/icu", |
| 492 ] | 492 ] |
| 493 sources += [ | 493 sources += [ |
| 494 "base/filename_util_icu.cc", | 494 "base/filename_util_icu.cc", |
| 495 "base/net_string_util_icu.cc", | 495 "base/net_string_util_icu.cc", |
| 496 ] | 496 ] |
| 497 } | 497 } |
| 498 | 498 |
| 499 # Brotli support. | 499 # Brotli support. |
| 500 if (!disable_brotli_filter) { | 500 if (!disable_brotli_filter) { |
| 501 sources += [ "filter/brotli_filter.cc" ] | 501 sources += [ "filter/brotli_stream_source.cc" ] |
| 502 deps += [ "//third_party/brotli" ] | 502 deps += [ "//third_party/brotli" ] |
| 503 } else { | 503 } else { |
| 504 sources += [ "filter/brotli_filter_disabled.cc" ] | 504 sources += [ "filter/brotli_stream_source_disabled.cc" ] |
| 505 } | 505 } |
| 506 } | 506 } |
| 507 } | 507 } |
| 508 | 508 |
| 509 grit("net_resources") { | 509 grit("net_resources") { |
| 510 source = "base/net_resources.grd" | 510 source = "base/net_resources.grd" |
| 511 use_qualified_include = true | 511 use_qualified_include = true |
| 512 outputs = [ | 512 outputs = [ |
| 513 "grit/net_resources.h", | 513 "grit/net_resources.h", |
| 514 "net_resources.pak", | 514 "net_resources.pak", |
| (...skipping 1181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1696 "spdy/spdy_network_transaction_unittest.cc", | 1696 "spdy/spdy_network_transaction_unittest.cc", |
| 1697 "spdy/spdy_proxy_client_socket_unittest.cc", | 1697 "spdy/spdy_proxy_client_socket_unittest.cc", |
| 1698 "url_request/url_request_job_unittest.cc", | 1698 "url_request/url_request_job_unittest.cc", |
| 1699 "url_request/url_request_unittest.cc", | 1699 "url_request/url_request_unittest.cc", |
| 1700 ] | 1700 ] |
| 1701 } | 1701 } |
| 1702 | 1702 |
| 1703 # Exclude brotli test if the support for brotli is disabled. | 1703 # Exclude brotli test if the support for brotli is disabled. |
| 1704 # Also, exclude the test from iOS for now (needs to read input data files). | 1704 # Also, exclude the test from iOS for now (needs to read input data files). |
| 1705 if (disable_brotli_filter || is_ios) { | 1705 if (disable_brotli_filter || is_ios) { |
| 1706 sources -= [ "filter/brotli_filter_unittest.cc" ] | 1706 sources -= [ "filter/brotli_stream_source_unittest.cc" ] |
| 1707 } | 1707 } |
| 1708 | 1708 |
| 1709 if (is_android) { | 1709 if (is_android) { |
| 1710 deps += [ | 1710 deps += [ |
| 1711 ":net_test_jni_headers", | 1711 ":net_test_jni_headers", |
| 1712 "//base:base_java_unittest_support", | 1712 "//base:base_java_unittest_support", |
| 1713 "//net/android:net_java", | 1713 "//net/android:net_java", |
| 1714 "//net/android:net_java_test_support", | 1714 "//net/android:net_java_test_support", |
| 1715 "//net/android:net_javatests", | 1715 "//net/android:net_javatests", |
| 1716 "//net/android:net_unittests_apk_resources", | 1716 "//net/android:net_unittests_apk_resources", |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2014 sources = [ | 2014 sources = [ |
| 2015 "socket/socks5_client_socket_fuzzer.cc", | 2015 "socket/socks5_client_socket_fuzzer.cc", |
| 2016 ] | 2016 ] |
| 2017 deps = [ | 2017 deps = [ |
| 2018 ":net_fuzzer_test_support", | 2018 ":net_fuzzer_test_support", |
| 2019 ":test_support", | 2019 ":test_support", |
| 2020 "//base", | 2020 "//base", |
| 2021 "//net", | 2021 "//net", |
| 2022 ] | 2022 ] |
| 2023 } | 2023 } |
| OLD | NEW |