Chromium Code Reviews| 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 1731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1742 if (use_v8_in_net) { | 1742 if (use_v8_in_net) { |
| 1743 deps += [ ":net_with_v8" ] | 1743 deps += [ ":net_with_v8" ] |
| 1744 } else { | 1744 } else { |
| 1745 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1745 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1746 } | 1746 } |
| 1747 } | 1747 } |
| 1748 } | 1748 } |
| 1749 | 1749 |
| 1750 # Fuzzers | 1750 # Fuzzers |
| 1751 | 1751 |
| 1752 static_library("net_fuzzer_test_support") { | 1752 source_set("net_fuzzer_test_support") { |
|
brettw
2016/07/15 17:01:38
You should comment why this needs to be the case o
mmenke
2016/07/15 17:05:15
Is something like "Making this a static_library br
| |
| 1753 testonly = true | 1753 testonly = true |
| 1754 | 1754 |
| 1755 sources = [ | 1755 sources = [ |
| 1756 "base/fuzzed_data_provider.cc", | 1756 "base/fuzzed_data_provider.cc", |
| 1757 "base/fuzzed_data_provider.h", | 1757 "base/fuzzed_data_provider.h", |
| 1758 "base/fuzzer_test_support.cc", | 1758 "base/fuzzer_test_support.cc", |
| 1759 "socket/fuzzed_socket.cc", | 1759 "socket/fuzzed_socket.cc", |
| 1760 "socket/fuzzed_socket.h", | 1760 "socket/fuzzed_socket.h", |
| 1761 "socket/fuzzed_socket_factory.cc", | 1761 "socket/fuzzed_socket_factory.cc", |
| 1762 "socket/fuzzed_socket_factory.h", | 1762 "socket/fuzzed_socket_factory.h", |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2081 "url_request/url_request_fuzzer.cc", | 2081 "url_request/url_request_fuzzer.cc", |
| 2082 ] | 2082 ] |
| 2083 deps = [ | 2083 deps = [ |
| 2084 ":net_fuzzer_test_support", | 2084 ":net_fuzzer_test_support", |
| 2085 ":test_support", | 2085 ":test_support", |
| 2086 "//base", | 2086 "//base", |
| 2087 "//net", | 2087 "//net", |
| 2088 ] | 2088 ] |
| 2089 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" | 2089 dict = "data/fuzzer_dictionaries/net_url_request_fuzzer.dict" |
| 2090 } | 2090 } |
| OLD | NEW |