Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: net/BUILD.gn

Issue 2931943003: Add scripts dependency to net_perftests target (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 5479 matching lines...) Expand 10 before | Expand all | Expand 10 after
5490 ":test_support", 5490 ":test_support",
5491 "//base", 5491 "//base",
5492 "//base:i18n", 5492 "//base:i18n",
5493 "//base/test:test_support_perf", 5493 "//base/test:test_support_perf",
5494 "//build/config:exe_and_shlib_deps", 5494 "//build/config:exe_and_shlib_deps",
5495 "//build/win:default_exe_manifest", 5495 "//build/win:default_exe_manifest",
5496 "//testing/gtest", 5496 "//testing/gtest",
5497 "//testing/perf", 5497 "//testing/perf",
5498 "//url", 5498 "//url",
5499 ] 5499 ]
5500 5500 data = [
5501 # Needed for isolate script to execute.
5502 "//testing/scripts/common.py",
5503 "//testing/xvfb.py",
5504 "//testing/scripts/run_gtest_perf_test.py",
5505 "//tools/perf/generate_legacy_perf_dashboard_json.py",
5506 ]
5501 if (enable_websockets) { 5507 if (enable_websockets) {
5502 sources += [ "websockets/websocket_frame_perftest.cc" ] 5508 sources += [ "websockets/websocket_frame_perftest.cc" ]
5503 } 5509 }
5504 5510
5505 # Some linker failures have been observed for this target on the Win64 5511 # Some linker failures have been observed for this target on the Win64
5506 # continuous builder, see crbug.com/659369. 5512 # continuous builder, see crbug.com/659369.
5507 # TODO(sebmarchand): Remove this once we have some data. 5513 # TODO(sebmarchand): Remove this once we have some data.
5508 if (is_win && linkrepro_root_dir != "") { 5514 if (is_win && linkrepro_root_dir != "") {
5509 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ] 5515 ldflags = [ "/LINKREPRO:" + linkrepro_root_dir + "/" + target_name ]
5510 } 5516 }
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
6052 ] 6058 ]
6053 deps = [ 6059 deps = [
6054 ":net_fuzzer_test_support", 6060 ":net_fuzzer_test_support",
6055 ":test_support", 6061 ":test_support",
6056 "//base", 6062 "//base",
6057 "//net", 6063 "//net",
6058 ] 6064 ]
6059 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict" 6065 dict = "data/fuzzer_dictionaries/net_spdy_session_fuzzer.dict"
6060 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/" 6066 seed_corpus = "data/fuzzer_data/net_spdy_session_fuzzer/"
6061 } 6067 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698