Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: net/BUILD.gn

Issue 317253003: Add libxslt to the GN build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 import("//url/config.gni") 9 import("//url/config.gni")
10 10
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 # sense. 1079 # sense.
1080 "dns/dns_config_service_posix_unittest.cc", 1080 "dns/dns_config_service_posix_unittest.cc",
1081 ] 1081 ]
1082 deps += [ 1082 deps += [
1083 ":net_javatests", # FIXME(brettw) 1083 ":net_javatests", # FIXME(brettw)
1084 ":net_test_jni_headers", 1084 ":net_test_jni_headers",
1085 ] 1085 ]
1086 } 1086 }
1087 1087
1088 if (!use_nss_certs) { 1088 if (!use_nss_certs) {
1089 sources -= [ 1089 sources -= [ "ssl/client_cert_store_nss_unittest.cc" ]
1090 "ssl/client_cert_store_nss_unittest.cc", 1090 if (is_chromeos) {
1091 "ssl/client_cert_store_chromeos_unittest.cc", 1091 # Will have already have been removed in the ChromeOS case.
1092 ] 1092 sources -= [ "ssl/client_cert_store_chromeos_unittest.cc" ]
1093 }
1093 } 1094 }
1094 1095
1095 if (use_openssl) { 1096 if (use_openssl) {
1096 # When building for OpenSSL, we need to exclude NSS specific tests 1097 # When building for OpenSSL, we need to exclude NSS specific tests
1097 # or functionality not supported by OpenSSL yet. 1098 # or functionality not supported by OpenSSL yet.
1098 # TODO(bulach): Add equivalent tests when the underlying 1099 # TODO(bulach): Add equivalent tests when the underlying
1099 # functionality is ported to OpenSSL. 1100 # functionality is ported to OpenSSL.
1100 sources -= [ 1101 sources -= [
1101 "cert/ct_objects_extractor_unittest.cc", 1102 "cert/ct_objects_extractor_unittest.cc",
1102 "cert/multi_log_ct_verifier_unittest.cc", 1103 "cert/multi_log_ct_verifier_unittest.cc",
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 if (use_icu_alternatives_on_android) { 1284 if (use_icu_alternatives_on_android) {
1284 sources -= [ 1285 sources -= [
1285 "base/filename_util_unittest.cc", 1286 "base/filename_util_unittest.cc",
1286 "base/net_util_icu_unittest.cc", 1287 "base/net_util_icu_unittest.cc",
1287 ] 1288 ]
1288 deps -= [ "//base:i18n" ] 1289 deps -= [ "//base:i18n" ]
1289 } 1290 }
1290 } 1291 }
1291 1292
1292 } # !is_android 1293 } # !is_android
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | third_party/libxslt/BUILD.gn » ('j') | third_party/libxslt/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698