| 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",
|
| ]
|
| }
|
|
|