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

Unified Diff: content/test/BUILD.gn

Issue 2597983003: Add tests for how LocalStorageContextMojo interacts with file/leveldb services. (Closed)
Patch Set: reapply change that got lost during rebase Created 4 years 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
Index: content/test/BUILD.gn
diff --git a/content/test/BUILD.gn b/content/test/BUILD.gn
index bf3ff46e333392d42cb497c1196452fe1a9910c4..ca7f97f12c2d72c2a2ba3b1421b4b0caaab521c0 100644
--- a/content/test/BUILD.gn
+++ b/content/test/BUILD.gn
@@ -10,6 +10,7 @@ import("//build/config/ui.gni")
import("//media/media_options.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//ppapi/features/features.gni")
+import("//services/service_manager/public/service_manifest.gni")
import("//testing/test.gni")
import("//third_party/WebKit/public/public_features.gni")
import("//v8/gni/v8.gni")
@@ -1442,6 +1443,9 @@ test("content_unittests") {
"//ppapi/c",
"//ppapi/features",
"//printing",
+ "//services/file:lib",
+ "//services/file/public/interfaces",
+ "//services/service_manager/public/cpp:service_test_support",
"//skia",
"//sql",
"//sql:test_support",
@@ -1472,6 +1476,8 @@ test("content_unittests") {
]
data_deps = [
+ ":content_unittests_manifest",
+ "//components/filesystem:filesystem",
"//third_party/mesa:osmesa",
]
@@ -1710,6 +1716,15 @@ test("content_unittests") {
}
}
+service_manifest("content_unittests_manifest") {
+ name = "content_unittests"
+ source = "unittests_manifest.json"
+ packaged_services = [ "file" ]
+ deps = [
+ "//services/file:manifest",
+ ]
+}
+
test("content_perftests") {
# See comment at the top of //content/BUILD.gn for why this is disabled in
# component builds.
« no previous file with comments | « content/browser/dom_storage/local_storage_context_mojo_unittest.cc ('k') | content/test/unittests_manifest.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698