mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
20 lines
503 B
Plaintext
20 lines
503 B
Plaintext
# Copyright (c) 2022 Microsoft, Inc.
|
|
# Use of this source code is governed by the MIT license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import("//electron/buildflags/buildflags.gni")
|
|
import("//mojo/public/tools/bindings/mojom.gni")
|
|
|
|
mojom("mojom") {
|
|
sources = [ "node_service.mojom" ]
|
|
public_deps = [
|
|
"//mojo/public/mojom/base",
|
|
"//sandbox/policy/mojom",
|
|
"//third_party/blink/public/mojom:mojom_core",
|
|
]
|
|
|
|
if (enable_prompt_api) {
|
|
enabled_features = [ "enable_prompt_api" ]
|
|
}
|
|
}
|