| 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") |
| 11 import("//build_overrides/v8.gni") | 11 import("//build_overrides/v8.gni") |
| 12 import("//testing/libfuzzer/fuzzer_test.gni") |
| 12 import("//testing/test.gni") | 13 import("//testing/test.gni") |
| 13 import("//third_party/icu/config.gni") | 14 import("//third_party/icu/config.gni") |
| 14 import("//third_party/protobuf/proto_library.gni") | 15 import("//third_party/protobuf/proto_library.gni") |
| 15 import("//tools/grit/grit_rule.gni") | 16 import("//tools/grit/grit_rule.gni") |
| 16 | 17 |
| 17 if (is_android) { | 18 if (is_android) { |
| 18 import("//build/config/android/config.gni") | 19 import("//build/config/android/config.gni") |
| 19 import("//build/config/android/rules.gni") | 20 import("//build/config/android/rules.gni") |
| 20 } else if (is_mac) { | 21 } else if (is_mac) { |
| 21 import("//build/config/mac/mac_sdk.gni") | 22 import("//build/config/mac/mac_sdk.gni") |
| (...skipping 1712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1734 sources += [ "websockets/websocket_frame_perftest.cc" ] | 1735 sources += [ "websockets/websocket_frame_perftest.cc" ] |
| 1735 } | 1736 } |
| 1736 | 1737 |
| 1737 if (use_v8_in_net) { | 1738 if (use_v8_in_net) { |
| 1738 deps += [ ":net_with_v8" ] | 1739 deps += [ ":net_with_v8" ] |
| 1739 } else { | 1740 } else { |
| 1740 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1741 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1741 } | 1742 } |
| 1742 } | 1743 } |
| 1743 | 1744 |
| 1745 fuzzer_test("parse_proxy_list_pac_fuzzer") { |
| 1746 sources = [ |
| 1747 "proxy/parse_proxy_list_pac_fuzzer.cc", |
| 1748 ] |
| 1749 deps = [ |
| 1750 "//net", |
| 1751 ] |
| 1752 } |
| 1753 |
| 1754 fuzzer_test("parse_proxy_list_fuzzer") { |
| 1755 sources = [ |
| 1756 "proxy/parse_proxy_list_fuzzer.cc", |
| 1757 ] |
| 1758 deps = [ |
| 1759 "//net", |
| 1760 ] |
| 1761 } |
| 1762 |
| 1763 fuzzer_test("parse_proxy_bypass_rules_fuzzer") { |
| 1764 sources = [ |
| 1765 "proxy/parse_proxy_bypass_rules_fuzzer.cc", |
| 1766 ] |
| 1767 deps = [ |
| 1768 "//net", |
| 1769 ] |
| 1770 } |
| 1771 |
| 1772 fuzzer_test("parse_proxy_rules_fuzzer") { |
| 1773 sources = [ |
| 1774 "proxy/parse_proxy_rules_fuzzer.cc", |
| 1775 ] |
| 1776 deps = [ |
| 1777 "//net", |
| 1778 ] |
| 1779 } |
| 1780 |
| 1781 fuzzer_test("parse_data_url_fuzzer") { |
| 1782 sources = [ |
| 1783 "base/parse_data_url_fuzzer.cc", |
| 1784 ] |
| 1785 deps = [ |
| 1786 "//net", |
| 1787 ] |
| 1788 } |
| 1789 |
| 1790 fuzzer_test("sniff_mime_type_fuzzer") { |
| 1791 sources = [ |
| 1792 "base/sniff_mime_type_fuzzer.cc", |
| 1793 ] |
| 1794 deps = [ |
| 1795 "//net", |
| 1796 ] |
| 1797 } |
| 1798 |
| 1799 fuzzer_test("parse_ip_pattern_fuzzer") { |
| 1800 sources = [ |
| 1801 "base/parse_ip_pattern_fuzzer.cc", |
| 1802 ] |
| 1803 deps = [ |
| 1804 "//net", |
| 1805 ] |
| 1806 } |
| 1807 |
| 1808 fuzzer_test("get_domain_and_registry_fuzzer") { |
| 1809 sources = [ |
| 1810 "base/registry_controlled_domains/get_domain_and_registry_fuzzer.cc", |
| 1811 ] |
| 1812 deps = [ |
| 1813 "//base", |
| 1814 "//base:i18n", |
| 1815 "//net", |
| 1816 ] |
| 1817 } |
| 1818 |
| 1819 fuzzer_test("parse_cookie_line_fuzzer") { |
| 1820 sources = [ |
| 1821 "cookies/parse_cookie_line_fuzzer.cc", |
| 1822 ] |
| 1823 deps = [ |
| 1824 "//net", |
| 1825 ] |
| 1826 } |
| 1827 |
| 1744 buildflag_header("features") { | 1828 buildflag_header("features") { |
| 1745 header = "net_features.h" | 1829 header = "net_features.h" |
| 1746 | 1830 |
| 1747 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] | 1831 flags = [ "ENABLE_BIDIRECTIONAL_STREAM=$enable_bidirectional_stream" ] |
| 1748 } | 1832 } |
| OLD | NEW |