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 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1546 # TODO(crbug.com/594965): this should be converted to "app" template and | 1546 # TODO(crbug.com/594965): this should be converted to "app" template and |
1547 # enabled on iOS too. | 1547 # enabled on iOS too. |
1548 executable("net_perftests") { | 1548 executable("net_perftests") { |
1549 testonly = true | 1549 testonly = true |
1550 sources = [ | 1550 sources = [ |
1551 "base/mime_sniffer_perftest.cc", | 1551 "base/mime_sniffer_perftest.cc", |
1552 "cookies/cookie_monster_perftest.cc", | 1552 "cookies/cookie_monster_perftest.cc", |
1553 "disk_cache/disk_cache_perftest.cc", | 1553 "disk_cache/disk_cache_perftest.cc", |
1554 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", | 1554 "extras/sqlite/sqlite_persistent_cookie_store_perftest.cc", |
1555 "proxy/proxy_resolver_perftest.cc", | 1555 "proxy/proxy_resolver_perftest.cc", |
1556 "udp/udp_socket_perftest.cc", | 1556 "socket/udp_socket_perftest.cc", |
1557 ] | 1557 ] |
1558 | 1558 |
1559 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1559 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
1560 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 1560 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
1561 deps = [ | 1561 deps = [ |
1562 ":extras", | 1562 ":extras", |
1563 ":net", | 1563 ":net", |
1564 ":test_support", | 1564 ":test_support", |
1565 "//base", | 1565 "//base", |
1566 "//base:i18n", | 1566 "//base:i18n", |
(...skipping 20 matching lines...) Expand all Loading... |
1587 | 1587 |
1588 # This has a global (InitGlobals) that must always be linked in, so | 1588 # This has a global (InitGlobals) that must always be linked in, so |
1589 # must be a source set instead of a static library. | 1589 # must be a source set instead of a static library. |
1590 source_set("net_fuzzer_test_support") { | 1590 source_set("net_fuzzer_test_support") { |
1591 testonly = true | 1591 testonly = true |
1592 | 1592 |
1593 sources = [ | 1593 sources = [ |
1594 "base/fuzzer_test_support.cc", | 1594 "base/fuzzer_test_support.cc", |
1595 "filter/fuzzed_source_stream.cc", | 1595 "filter/fuzzed_source_stream.cc", |
1596 "filter/fuzzed_source_stream.h", | 1596 "filter/fuzzed_source_stream.h", |
| 1597 "socket/fuzzed_datagram_client_socket.cc", |
| 1598 "socket/fuzzed_datagram_client_socket.h", |
1597 "socket/fuzzed_socket.cc", | 1599 "socket/fuzzed_socket.cc", |
1598 "socket/fuzzed_socket.h", | 1600 "socket/fuzzed_socket.h", |
1599 "socket/fuzzed_socket_factory.cc", | 1601 "socket/fuzzed_socket_factory.cc", |
1600 "socket/fuzzed_socket_factory.h", | 1602 "socket/fuzzed_socket_factory.h", |
1601 "udp/fuzzed_datagram_client_socket.cc", | |
1602 "udp/fuzzed_datagram_client_socket.h", | |
1603 ] | 1603 ] |
1604 public_deps = [ | 1604 public_deps = [ |
1605 "//base/test:test_support", | 1605 "//base/test:test_support", |
1606 ] | 1606 ] |
1607 deps = [ | 1607 deps = [ |
1608 "//base", | 1608 "//base", |
1609 "//base:i18n", | 1609 "//base:i18n", |
1610 "//net", | 1610 "//net", |
1611 ] | 1611 ] |
1612 } | 1612 } |
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2036 "http/http_security_headers_hpkp_report_only_fuzzer.cc", | 2036 "http/http_security_headers_hpkp_report_only_fuzzer.cc", |
2037 ] | 2037 ] |
2038 deps = [ | 2038 deps = [ |
2039 ":net_fuzzer_test_support", | 2039 ":net_fuzzer_test_support", |
2040 "//base", | 2040 "//base", |
2041 "//net", | 2041 "//net", |
2042 "//url", | 2042 "//url", |
2043 ] | 2043 ] |
2044 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" | 2044 dict = "data/fuzzer_dictionaries/net_http_security_headers_fuzzer.dict" |
2045 } | 2045 } |
OLD | NEW |