| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 115   ":net_resources", | 115   ":net_resources", | 
| 116   "//base", | 116   "//base", | 
| 117   "//net/base/registry_controlled_domains", | 117   "//net/base/registry_controlled_domains", | 
| 118   "//third_party/protobuf:protobuf_lite", | 118   "//third_party/protobuf:protobuf_lite", | 
| 119 ] | 119 ] | 
| 120 | 120 | 
| 121 if (!is_nacl) { | 121 if (!is_nacl) { | 
| 122   net_shared_sources += gypi_values.net_non_nacl_sources | 122   net_shared_sources += gypi_values.net_non_nacl_sources | 
| 123 | 123 | 
| 124   net_shared_deps += [ | 124   net_shared_deps += [ | 
| 125     "//base:prefs", |  | 
| 126     "//base/third_party/dynamic_annotations", | 125     "//base/third_party/dynamic_annotations", | 
|  | 126     "//components/prefs", | 
| 127     "//sdch", | 127     "//sdch", | 
| 128     "//third_party/zlib", | 128     "//third_party/zlib", | 
| 129   ] | 129   ] | 
| 130 | 130 | 
| 131   if (!use_kerberos) { | 131   if (!use_kerberos) { | 
| 132     net_shared_sources -= [ | 132     net_shared_sources -= [ | 
| 133       "http/http_auth_gssapi_posix.cc", | 133       "http/http_auth_gssapi_posix.cc", | 
| 134       "http/http_auth_gssapi_posix.h", | 134       "http/http_auth_gssapi_posix.h", | 
| 135       "http/http_auth_handler_negotiate.cc", | 135       "http/http_auth_handler_negotiate.cc", | 
| 136       "http/http_auth_handler_negotiate.h", | 136       "http/http_auth_handler_negotiate.h", | 
| (...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1397   deps = [ | 1397   deps = [ | 
| 1398     ":balsa", | 1398     ":balsa", | 
| 1399     ":extras", | 1399     ":extras", | 
| 1400     ":http_server", | 1400     ":http_server", | 
| 1401     ":net", | 1401     ":net", | 
| 1402     ":simple_quic_tools", | 1402     ":simple_quic_tools", | 
| 1403     ":stale_while_revalidate_experiment_domains", | 1403     ":stale_while_revalidate_experiment_domains", | 
| 1404     ":test_support", | 1404     ":test_support", | 
| 1405     "//base", | 1405     "//base", | 
| 1406     "//base:i18n", | 1406     "//base:i18n", | 
| 1407     "//base:prefs_test_support", |  | 
| 1408     "//base/third_party/dynamic_annotations", | 1407     "//base/third_party/dynamic_annotations", | 
| 1409     "//crypto", | 1408     "//crypto", | 
| 1410     "//crypto:platform", | 1409     "//crypto:platform", | 
| 1411     "//crypto:test_support", | 1410     "//crypto:test_support", | 
| 1412     "//net/base/registry_controlled_domains", | 1411     "//net/base/registry_controlled_domains", | 
| 1413     "//sql", | 1412     "//sql", | 
| 1414     "//testing/gmock", | 1413     "//testing/gmock", | 
| 1415     "//testing/gtest", | 1414     "//testing/gtest", | 
| 1416     "//third_party/zlib", | 1415     "//third_party/zlib", | 
| 1417     "//url", | 1416     "//url", | 
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1740   } else { | 1739   } else { | 
| 1741     sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1740     sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 
| 1742   } | 1741   } | 
| 1743 } | 1742 } | 
| 1744 | 1743 | 
| 1745 buildflag_header("features") { | 1744 buildflag_header("features") { | 
| 1746   header = "net_features.h" | 1745   header = "net_features.h" | 
| 1747 | 1746 | 
| 1748   flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1747   flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 
| 1749 } | 1748 } | 
| OLD | NEW | 
|---|