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

Unified Diff: content/browser/indexed_db/BUILD.gn

Issue 1963293002: Replacing Indexed DB Chromium IPC with Mojo Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some (incomplete) work on struct traits. Created 4 years, 5 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
Index: content/browser/indexed_db/BUILD.gn
diff --git a/components/password_manager/content/public/interfaces/BUILD.gn b/content/browser/indexed_db/BUILD.gn
similarity index 52%
copy from components/password_manager/content/public/interfaces/BUILD.gn
copy to content/browser/indexed_db/BUILD.gn
index 66d988d3475448aaaad514cbbdcb98ac58721023..605e2e323cd651297ff1ffdb7221ecb6729b64fe 100644
--- a/components/password_manager/content/public/interfaces/BUILD.gn
+++ b/content/browser/indexed_db/BUILD.gn
@@ -2,15 +2,19 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//mojo/public/mojo_application_manifest.gni")
import("//mojo/public/tools/bindings/mojom.gni")
-mojom("interfaces") {
+mojo_application_manifest("manifest") {
+ application_name = "indexed_db"
+ source = "manifest.json"
+}
+
+mojom("indexed_db_mojom") {
sources = [
- "credential_manager.mojom",
+ "//third_party/WebKit/public/platform/modules/indexeddb/indexed_db.mojom",
]
-
public_deps = [
- "//url/mojo:url_mojom_gurl",
"//url/mojo:url_mojom_origin",
]
}

Powered by Google App Engine
This is Rietveld 408576698