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 935 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
946 ":test_support", | 946 ":test_support", |
947 "//base", | 947 "//base", |
948 "//base/test:test_support", | 948 "//base/test:test_support", |
949 "//testing/gtest", | 949 "//testing/gtest", |
950 ] | 950 ] |
951 } | 951 } |
952 | 952 |
953 executable("stress_cache") { | 953 executable("stress_cache") { |
954 testonly = true | 954 testonly = true |
955 sources = [ | 955 sources = [ |
956 "disk_cache/blockfile/stress_cache.cc", | 956 "tools/stress_cache/stress_cache.cc", |
957 ] | 957 ] |
958 | 958 |
959 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 959 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
960 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 960 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
961 deps = [ | 961 deps = [ |
962 ":net", | 962 ":net", |
963 ":test_support", | 963 ":test_support", |
964 "//base", | 964 "//base", |
965 ] | 965 ] |
966 } | 966 } |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1493 "quic/quic_server_bin.cc", | 1493 "quic/quic_server_bin.cc", |
1494 ] | 1494 ] |
1495 deps = [ | 1495 deps = [ |
1496 ":quic_tools", | 1496 ":quic_tools", |
1497 ":net", | 1497 ":net", |
1498 "//base", | 1498 "//base", |
1499 "//third_party/boringssl", | 1499 "//third_party/boringssl", |
1500 ] | 1500 ] |
1501 } | 1501 } |
1502 } # !is_android && !is_win && !is_mac | 1502 } # !is_android && !is_win && !is_mac |
OLD | NEW |