| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 } | 190 } |
| 191 | 191 |
| 192 if (!use_kerberos || is_android) { | 192 if (!use_kerberos || is_android) { |
| 193 sources -= [ | 193 sources -= [ |
| 194 "http/http_auth_gssapi_posix.cc", | 194 "http/http_auth_gssapi_posix.cc", |
| 195 "http/http_auth_gssapi_posix.h", | 195 "http/http_auth_gssapi_posix.h", |
| 196 ] | 196 ] |
| 197 } | 197 } |
| 198 | 198 |
| 199 if (use_glib && use_gconf && !is_chromeos) { | 199 if (use_glib && use_gconf && !is_chromeos) { |
| 200 deps += [ "//build/linux:gio" ] | 200 deps += [ "//build/linux/libgio" ] |
| 201 } | 201 } |
| 202 | 202 |
| 203 if (!use_nss_certs) { | 203 if (!use_nss_certs) { |
| 204 sources -= [ | 204 sources -= [ |
| 205 "base/crypto_module_nss.cc", | 205 "base/crypto_module_nss.cc", |
| 206 "base/keygen_handler_nss.cc", | 206 "base/keygen_handler_nss.cc", |
| 207 "cert/cert_database_nss.cc", | 207 "cert/cert_database_nss.cc", |
| 208 "cert/nss_cert_database.cc", | 208 "cert/nss_cert_database.cc", |
| 209 "cert/nss_cert_database.h", | 209 "cert/nss_cert_database.h", |
| 210 "cert/x509_certificate_nss.cc", | 210 "cert/x509_certificate_nss.cc", |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 "//base", | 943 "//base", |
| 944 "//build/config/sanitizers:deps", | 944 "//build/config/sanitizers:deps", |
| 945 "//build/win:default_exe_manifest", | 945 "//build/win:default_exe_manifest", |
| 946 ] | 946 ] |
| 947 | 947 |
| 948 if (is_desktop_linux && use_gconf && use_glib) { | 948 if (is_desktop_linux && use_gconf && use_glib) { |
| 949 configs += [ | 949 configs += [ |
| 950 "//build/config/linux/gconf", | 950 "//build/config/linux/gconf", |
| 951 "//build/config/linux:glib", | 951 "//build/config/linux:glib", |
| 952 ] | 952 ] |
| 953 deps += [ "//build/linux:gio" ] | 953 deps += [ "//build/linux/libgio" ] |
| 954 } | 954 } |
| 955 } | 955 } |
| 956 } | 956 } |
| 957 | 957 |
| 958 executable("run_testserver") { | 958 executable("run_testserver") { |
| 959 testonly = true | 959 testonly = true |
| 960 sources = [ | 960 sources = [ |
| 961 "tools/testserver/run_testserver.cc", | 961 "tools/testserver/run_testserver.cc", |
| 962 ] | 962 ] |
| 963 deps = [ | 963 deps = [ |
| (...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1995 "url_request/url_request_fuzzer.cc", | 1995 "url_request/url_request_fuzzer.cc", |
| 1996 ] | 1996 ] |
| 1997 deps = [ | 1997 deps = [ |
| 1998 ":net_fuzzer_test_support", | 1998 ":net_fuzzer_test_support", |
| 1999 ":test_support", | 1999 ":test_support", |
| 2000 "//base", | 2000 "//base", |
| 2001 "//net", | 2001 "//net", |
| 2002 ] | 2002 ] |
| 2003 dict = "data/http/http.dict" | 2003 dict = "data/http/http.dict" |
| 2004 } | 2004 } |
| OLD | NEW |