| Index: chrome/browser/ui/webui/plugins/BUILD.gn
|
| diff --git a/chrome/browser/ui/webui/plugins/BUILD.gn b/chrome/browser/ui/webui/plugins/BUILD.gn
|
| index 6d35c06b4c433165f95763c290a56892b31d70a9..b03037696c6933ac328defa9c984f799edcfd879 100644
|
| --- a/chrome/browser/ui/webui/plugins/BUILD.gn
|
| +++ b/chrome/browser/ui/webui/plugins/BUILD.gn
|
| @@ -2,9 +2,18 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
| import("//mojo/public/tools/bindings/mojom.gni")
|
| +import("//third_party/node/run_node.gni")
|
|
|
| mojom("mojo_bindings") {
|
| sources = [
|
| "plugins.mojom",
|
| ]
|
| }
|
| +
|
| +nodejs("node_script1") {
|
| + script = "script1.js"
|
| +}
|
| +
|
| +nodejs("node_script2") {
|
| + script = "script2.js"
|
| +}
|
|
|