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 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 | 1589 |
1590 if (enable_websockets) { | 1590 if (enable_websockets) { |
1591 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1591 sources += [ "websockets/websocket_frame_perftest.cc" ] |
1592 } | 1592 } |
1593 | 1593 |
1594 if (use_v8_in_net) { | 1594 if (use_v8_in_net) { |
1595 deps += [ ":net_with_v8" ] | 1595 deps += [ ":net_with_v8" ] |
1596 } else { | 1596 } else { |
1597 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1597 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
1598 } | 1598 } |
| 1599 |
| 1600 # Some linker failures have been observed for this target on the Win64 |
| 1601 # continuous builder, see crbug.com/659369. |
| 1602 # TODO(sebmarchand): Remove this once we have some data. |
| 1603 if (is_win && linkrepro_root_dir != "") { |
| 1604 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ] |
| 1605 } |
1599 } | 1606 } |
1600 } | 1607 } |
1601 | 1608 |
1602 # Fuzzers | 1609 # Fuzzers |
1603 | 1610 |
1604 # This has a global (InitGlobals) that must always be linked in, so | 1611 # This has a global (InitGlobals) that must always be linked in, so |
1605 # must be a source set instead of a static library. | 1612 # must be a source set instead of a static library. |
1606 source_set("net_fuzzer_test_support") { | 1613 source_set("net_fuzzer_test_support") { |
1607 testonly = true | 1614 testonly = true |
1608 | 1615 |
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2066 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2073 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
2067 ] | 2074 ] |
2068 deps = [ | 2075 deps = [ |
2069 ":net_fuzzer_test_support", | 2076 ":net_fuzzer_test_support", |
2070 "//base", | 2077 "//base", |
2071 "//net", | 2078 "//net", |
2072 "//url", | 2079 "//url", |
2073 ] | 2080 ] |
2074 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2081 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
2075 } | 2082 } |
OLD | NEW |