| 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 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 ] | 383 ] |
| 384 sources += [ | 384 sources += [ |
| 385 "base/filename_util_icu.cc", | 385 "base/filename_util_icu.cc", |
| 386 "base/net_string_util_icu.cc", | 386 "base/net_string_util_icu.cc", |
| 387 ] | 387 ] |
| 388 } | 388 } |
| 389 | 389 |
| 390 # Brotli support. | 390 # Brotli support. |
| 391 if (!disable_brotli_filter) { | 391 if (!disable_brotli_filter) { |
| 392 sources += [ "filter/brotli_filter.cc" ] | 392 sources += [ "filter/brotli_filter.cc" ] |
| 393 sources += [ "filter/brotli_source_stream.cc" ] |
| 393 deps += [ "//third_party/brotli" ] | 394 deps += [ "//third_party/brotli" ] |
| 394 } else { | 395 } else { |
| 395 sources += [ "filter/brotli_filter_disabled.cc" ] | 396 sources += [ "filter/brotli_filter_disabled.cc" ] |
| 397 sources += [ "filter/brotli_source_stream_disabled.cc" ] |
| 396 } | 398 } |
| 397 } | 399 } |
| 398 } | 400 } |
| 399 | 401 |
| 400 grit("net_resources") { | 402 grit("net_resources") { |
| 401 source = "base/net_resources.grd" | 403 source = "base/net_resources.grd" |
| 402 use_qualified_include = true | 404 use_qualified_include = true |
| 403 outputs = [ | 405 outputs = [ |
| 404 "grit/net_resources.h", | 406 "grit/net_resources.h", |
| 405 "net_resources.pak", | 407 "net_resources.pak", |
| (...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1572 "spdy/spdy_proxy_client_socket_unittest.cc", | 1574 "spdy/spdy_proxy_client_socket_unittest.cc", |
| 1573 "url_request/url_request_job_unittest.cc", | 1575 "url_request/url_request_job_unittest.cc", |
| 1574 "url_request/url_request_unittest.cc", | 1576 "url_request/url_request_unittest.cc", |
| 1575 ] | 1577 ] |
| 1576 } | 1578 } |
| 1577 | 1579 |
| 1578 # Exclude brotli test if the support for brotli is disabled. | 1580 # Exclude brotli test if the support for brotli is disabled. |
| 1579 # Also, exclude the test from iOS for now (needs to read input data files). | 1581 # Also, exclude the test from iOS for now (needs to read input data files). |
| 1580 if (disable_brotli_filter || is_ios) { | 1582 if (disable_brotli_filter || is_ios) { |
| 1581 sources -= [ "filter/brotli_filter_unittest.cc" ] | 1583 sources -= [ "filter/brotli_filter_unittest.cc" ] |
| 1584 sources -= [ "filter/brotli_source_stream_unittest.cc" ] |
| 1582 } | 1585 } |
| 1583 | 1586 |
| 1584 if (is_android) { | 1587 if (is_android) { |
| 1585 data_deps += [ "//net/tools/testserver:testserver_py" ] | 1588 data_deps += [ "//net/tools/testserver:testserver_py" ] |
| 1586 deps += [ | 1589 deps += [ |
| 1587 ":net_test_jni_headers", | 1590 ":net_test_jni_headers", |
| 1588 "//base:base_java_unittest_support", | 1591 "//base:base_java_unittest_support", |
| 1589 "//net/android:net_java", | 1592 "//net/android:net_java", |
| 1590 "//net/android:net_java_test_support", | 1593 "//net/android:net_java_test_support", |
| 1591 "//net/android:net_javatests", | 1594 "//net/android:net_javatests", |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 sources = [ | 2051 sources = [ |
| 2049 "http/http_auth_challenge_tokenizer_fuzzer.cc", | 2052 "http/http_auth_challenge_tokenizer_fuzzer.cc", |
| 2050 ] | 2053 ] |
| 2051 deps = [ | 2054 deps = [ |
| 2052 ":net_fuzzer_test_support", | 2055 ":net_fuzzer_test_support", |
| 2053 ":test_support", | 2056 ":test_support", |
| 2054 "//base", | 2057 "//base", |
| 2055 "//net", | 2058 "//net", |
| 2056 ] | 2059 ] |
| 2057 } | 2060 } |
| OLD | NEW |