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

Unified Diff: storage/browser/BUILD.gn

Issue 2402593002: Create storage_unittests target. (Closed)
Patch Set: Attempt to appease win_clang. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | storage/browser/crbug653751_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: storage/browser/BUILD.gn
diff --git a/storage/browser/BUILD.gn b/storage/browser/BUILD.gn
index a4cc79a2e3f9fc92a217d83fc7fb9daaaee64a15..d76f52634a14db35ce0c8cfd9fe763cd4c53bf42 100644
--- a/storage/browser/BUILD.gn
+++ b/storage/browser/BUILD.gn
@@ -1,6 +1,7 @@
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//testing/test.gni")
component("browser") {
output_name = "storage_browser"
@@ -215,3 +216,21 @@ executable("dump_file_system") {
"//storage/common",
]
}
+
+test("storage_unittests") {
+ sources = [
+ # Do NOT add storage/ tests here until this target is added to the build
+ # bots. http://crbug.com/653751
+
+ # If the sources list is empty, the win_clang builder fails.
+ # This file will be removed when the real tests are moved over from
+ # content_unittests to this target.
+ "crbug653751_unittest.cc",
+ ]
+
+ deps = [
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « no previous file | storage/browser/crbug653751_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698