| 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/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//url/config.gni") | 9 import("//url/config.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1608 ":net", | 1608 ":net", |
| 1609 "//base", | 1609 "//base", |
| 1610 "//third_party/boringssl", | 1610 "//third_party/boringssl", |
| 1611 ] | 1611 ] |
| 1612 } | 1612 } |
| 1613 } | 1613 } |
| 1614 | 1614 |
| 1615 executable("net_perftests") { | 1615 executable("net_perftests") { |
| 1616 testonly = true | 1616 testonly = true |
| 1617 sources = [ | 1617 sources = [ |
| 1618 "base/mime_sniffer_perftest.cc", |
| 1618 "cookies/cookie_monster_perftest.cc", | 1619 "cookies/cookie_monster_perftest.cc", |
| 1619 "disk_cache/blockfile/disk_cache_perftest.cc", | 1620 "disk_cache/blockfile/disk_cache_perftest.cc", |
| 1620 "proxy/proxy_resolver_perftest.cc", | 1621 "proxy/proxy_resolver_perftest.cc", |
| 1621 "udp/udp_socket_perftest.cc", | 1622 "udp/udp_socket_perftest.cc", |
| 1622 ] | 1623 ] |
| 1623 | 1624 |
| 1624 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 1625 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1625 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 1626 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 1626 deps = [ | 1627 deps = [ |
| 1627 "//base", | 1628 "//base", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 1642 } else { | 1643 } else { |
| 1643 sources -= [ "proxy/proxy_resolver_perftest.cc" ] | 1644 sources -= [ "proxy/proxy_resolver_perftest.cc" ] |
| 1644 } | 1645 } |
| 1645 | 1646 |
| 1646 if (is_win && icu_use_data_file) { | 1647 if (is_win && icu_use_data_file) { |
| 1647 # This is needed to trigger the dll copy step on windows. | 1648 # This is needed to trigger the dll copy step on windows. |
| 1648 # TODO(mark): Specifying this here shouldn't be necessary. | 1649 # TODO(mark): Specifying this here shouldn't be necessary. |
| 1649 deps += [ "//third_party/icu:icudata" ] | 1650 deps += [ "//third_party/icu:icudata" ] |
| 1650 } | 1651 } |
| 1651 } | 1652 } |
| OLD | NEW |