| Index: chrome/test/perf/BUILD.gn
|
| diff --git a/chrome/test/perf/BUILD.gn b/chrome/test/perf/BUILD.gn
|
| index 08a1fc92ab4313186af7672a661ebbbf3dbc94bb..c4e74a24e0b28fc34a69119a423a96797ea1c450 100644
|
| --- a/chrome/test/perf/BUILD.gn
|
| +++ b/chrome/test/perf/BUILD.gn
|
| @@ -4,24 +4,29 @@
|
|
|
| import("//testing/test.gni")
|
|
|
| -# This test appears to be a legacy target consisting of files not yet moved
|
| -# elsewhere.
|
| -test("perf") {
|
| - output_name = "perf_tests"
|
| +if (!is_win || link_chrome_on_windows) {
|
| + # This test appears to be a legacy target consisting of files not yet moved
|
| + # elsewhere.
|
| + test("perf") {
|
| + output_name = "perf_tests"
|
|
|
| - sources = [
|
| - "perftests.cc",
|
| - "url_parse_perftest.cc",
|
| - "//content/browser/net/sqlite_persistent_cookie_store_perftest.cc",
|
| - ]
|
| + sources = [
|
| + "perftests.cc",
|
| + "url_parse_perftest.cc",
|
| + "//content/browser/net/sqlite_persistent_cookie_store_perftest.cc",
|
| + ]
|
|
|
| - deps = [
|
| - "//base",
|
| - "//base/allocator",
|
| - "//base/test:test_support",
|
| - "//content",
|
| - "//net",
|
| - "//testing/gtest",
|
| - "//url",
|
| - ]
|
| + deps = [
|
| + "//base",
|
| + "//base/allocator",
|
| + "//base/test:test_support",
|
| + "//content",
|
| + "//net",
|
| + "//testing/gtest",
|
| + "//url",
|
| + ]
|
| + }
|
| +} else {
|
| + group("perf") {
|
| + }
|
| }
|
|
|