| 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 1719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1730 set_sources_assignment_filter(sources_assignment_filter) | 1730 set_sources_assignment_filter(sources_assignment_filter) |
| 1731 isolate_file = "net_unittests.isolate" | 1731 isolate_file = "net_unittests.isolate" |
| 1732 shard_timeout = 300 | 1732 shard_timeout = 300 |
| 1733 } | 1733 } |
| 1734 | 1734 |
| 1735 # Symbols for crashes when running tests on swarming. | 1735 # Symbols for crashes when running tests on swarming. |
| 1736 if (symbol_level > 0) { | 1736 if (symbol_level > 0) { |
| 1737 if (is_win) { | 1737 if (is_win) { |
| 1738 data += [ "$root_out_dir/net_unittests.exe.pdb" ] | 1738 data += [ "$root_out_dir/net_unittests.exe.pdb" ] |
| 1739 } else if (is_mac) { | 1739 } else if (is_mac) { |
| 1740 data += [ "$root_out_dir/net_unittests.dSYM/" ] | 1740 # TODO(crbug.com/330301): make this conditional on mac_strip_release. |
| 1741 # data += [ "$root_out_dir/net_unittests.dSYM/" ] |
| 1741 } | 1742 } |
| 1742 } | 1743 } |
| 1743 } | 1744 } |
| 1744 | 1745 |
| 1745 # !is_android && !is_win && !is_mac | 1746 # !is_android && !is_win && !is_mac |
| 1746 if (!is_ios) { | 1747 if (!is_ios) { |
| 1747 # TODO(crbug.com/594965): this should be converted to "app" template and | 1748 # TODO(crbug.com/594965): this should be converted to "app" template and |
| 1748 # enabled on iOS too. | 1749 # enabled on iOS too. |
| 1749 executable("net_perftests") { | 1750 executable("net_perftests") { |
| 1750 testonly = true | 1751 testonly = true |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1999 sources = [ | 2000 sources = [ |
| 2000 "socket/socks5_client_socket_fuzzer.cc", | 2001 "socket/socks5_client_socket_fuzzer.cc", |
| 2001 ] | 2002 ] |
| 2002 deps = [ | 2003 deps = [ |
| 2003 ":net_fuzzer_test_support", | 2004 ":net_fuzzer_test_support", |
| 2004 ":test_support", | 2005 ":test_support", |
| 2005 "//base", | 2006 "//base", |
| 2006 "//net", | 2007 "//net", |
| 2007 ] | 2008 ] |
| 2008 } | 2009 } |
| OLD | NEW |