Commit 52be5423 authored by nednguyen's avatar nednguyen Committed by Commit bot

Clean up BUILD gn target of telemetry_perf_unittests, telemetry_gpu_unittests,

telemetry_tests

Also remove telemetry_perf_unittests on win xp platform since we no
longer support win xp on perf waterfall.

BUG=507796

Review URL: https://codereview.chromium.org/1461833002

Cr-Commit-Position: refs/heads/master@{#360591}
parent ad464104
......@@ -672,19 +672,6 @@ if (!is_android) {
"//testing/xvfb.py",
"//testing/scripts/run_telemetry_as_googletest.py",
]
if (is_win && (symbol_level == 1 || symbol_level == 2)) {
# TODO(GYP): These should be provided automatically through data_deps.
data += [ "$root_out_dir/chrome.exe.pdb" ]
if (is_component_build) {
data += [
"$root_out_dir/base.dll.pdb",
"$root_out_dir/blink_platform.dll.pdb",
"$root_out_dir/blink_web.dll.pdb",
"$root_out_dir/content.dll.pdb",
]
}
}
}
# TODO(GYP): Delete this after we've converted everything to GN.
......@@ -702,29 +689,11 @@ if (!is_android) {
]
data = [
"//tools/perf/",
# Field trial config
"//tools/variations/",
# For isolate contract.
"//testing/scripts/common.py",
"//testing/xvfb.py",
"//testing/scripts/run_telemetry_as_googletest.py",
]
if (is_win && (symbol_level == 1 || symbol_level == 2)) {
# TODO(GYP): These should be provided automatically through data_deps.
data += [ "$root_out_dir/chrome.exe.pdb" ]
if (is_component_build) {
data += [
"$root_out_dir/base.dll.pdb",
"$root_out_dir/blink_platform.dll.pdb",
"$root_out_dir/blink_web.dll.pdb",
"$root_out_dir/content.dll.pdb",
]
}
}
}
# TODO(GYP): Delete this after we've converted everything to GN.
......@@ -752,19 +721,6 @@ if (!is_android) {
"//third_party/webgl/",
"//content/test/gpu/run_gpu_test.py",
]
if (is_win && (symbol_level == 1 || symbol_level == 2)) {
# TODO(GYP): These should be provided automatically through data_deps.
data += [ "$root_out_dir/chrome.exe.pdb" ]
if (is_component_build) {
data += [
"$root_out_dir/base.dll.pdb",
"$root_out_dir/blink_platform.dll.pdb",
"$root_out_dir/blink_web.dll.pdb",
"$root_out_dir/content.dll.pdb",
]
}
}
}
group("telemetry_gpu_unittests_run") {
......
......@@ -2020,10 +2020,6 @@
}
],
"scripts": [
{
"name": "telemetry_perf_unittests",
"script": "telemetry_perf_unittests.py"
},
{
"name": "nacl_integration",
"script": "nacl_integration.py"
......
......@@ -26,4 +26,17 @@ group("telemetry_chrome_test") {
if (is_linux) {
data_deps += [ "//tools/xdisplaycheck" ]
}
if (is_win && (symbol_level == 1 || symbol_level == 2)) {
# TODO(GYP): These should be provided automatically through data_deps.
data += [ "$root_out_dir/chrome.exe.pdb" ]
if (is_component_build) {
data += [
"$root_out_dir/base.dll.pdb",
"$root_out_dir/blink_platform.dll.pdb",
"$root_out_dir/blink_web.dll.pdb",
"$root_out_dir/content.dll.pdb",
]
}
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment