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

Side by Side Diff: net/BUILD.gn

Issue 1984133003: Remove Windows Vista/XP specific code from net/base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixing builds Created 4 years, 7 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
« no previous file with comments | « no previous file | net/base/network_interfaces_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after
1650 1650
1651 # Symbols for crashes when running tests on swarming. 1651 # Symbols for crashes when running tests on swarming.
1652 if (symbol_level > 0) { 1652 if (symbol_level > 0) {
1653 if (is_win) { 1653 if (is_win) {
1654 data += [ "$root_out_dir/net_unittests.exe.pdb" ] 1654 data += [ "$root_out_dir/net_unittests.exe.pdb" ]
1655 } else if (is_mac) { 1655 } else if (is_mac) {
1656 # TODO(crbug.com/330301): make this conditional on mac_strip_release. 1656 # TODO(crbug.com/330301): make this conditional on mac_strip_release.
1657 # data += [ "$root_out_dir/net_unittests.dSYM/" ] 1657 # data += [ "$root_out_dir/net_unittests.dSYM/" ]
1658 } 1658 }
1659 } 1659 }
1660
1661 if (is_win) {
1662 libs = [
1663 "iphlpapi.lib",
1664 ]
1665 }
1660 } 1666 }
1661 1667
1662 # !is_android && !is_win && !is_mac 1668 # !is_android && !is_win && !is_mac
1663 if (!is_ios) { 1669 if (!is_ios) {
1664 # TODO(crbug.com/594965): this should be converted to "app" template and 1670 # TODO(crbug.com/594965): this should be converted to "app" template and
1665 # enabled on iOS too. 1671 # enabled on iOS too.
1666 executable("net_perftests") { 1672 executable("net_perftests") {
1667 testonly = true 1673 testonly = true
1668 sources = [ 1674 sources = [
1669 "base/mime_sniffer_perftest.cc", 1675 "base/mime_sniffer_perftest.cc",
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
2013 "url_request/url_request_fuzzer.cc", 2019 "url_request/url_request_fuzzer.cc",
2014 ] 2020 ]
2015 deps = [ 2021 deps = [
2016 ":net_fuzzer_test_support", 2022 ":net_fuzzer_test_support",
2017 ":test_support", 2023 ":test_support",
2018 "//base", 2024 "//base",
2019 "//net", 2025 "//net",
2020 ] 2026 ]
2021 dict = "data/http/http.dict" 2027 dict = "data/http/http.dict"
2022 } 2028 }
OLDNEW
« no previous file with comments | « no previous file | net/base/network_interfaces_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698