summaryrefslogtreecommitdiff
path: root/libcef/common/extensions/api/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'libcef/common/extensions/api/BUILD.gn')
-rw-r--r--libcef/common/extensions/api/BUILD.gn39
1 files changed, 39 insertions, 0 deletions
diff --git a/libcef/common/extensions/api/BUILD.gn b/libcef/common/extensions/api/BUILD.gn
new file mode 100644
index 00000000..aa2a1a4e
--- /dev/null
+++ b/libcef/common/extensions/api/BUILD.gn
@@ -0,0 +1,39 @@
+# Copyright 2016 The Chromium Embedded Framework Authors. Portions copyright
+# 2014 the Chromium Authors. All rights reserved. Use of this source code is
+# governed by a BSD-style license that can be found in the LICENSE file.
+
+import("//tools/json_schema_compiler/json_features.gni")
+
+json_features("cef_api_features") {
+ feature_type = "APIFeature"
+ method_name = "AddCEFAPIFeatures"
+ sources = [
+ "_api_features.json",
+ ]
+}
+
+json_features("cef_permission_features") {
+ feature_type = "PermissionFeature"
+ method_name = "AddCEFPermissionFeatures"
+ sources = [
+ "_permission_features.json",
+ ]
+}
+
+json_features("cef_manifest_features") {
+ feature_type = "ManifestFeature"
+ method_name = "AddCEFManifestFeatures"
+ sources = [
+ # Use the same manifest features as Chrome.
+ "//chrome/common/extensions/api/_manifest_features.json",
+ ]
+}
+
+group("extensions_features") {
+ public_deps = [
+ ":cef_api_features",
+ ":cef_manifest_features",
+ ":cef_permission_features",
+ "//extensions/common/api:extensions_features",
+ ]
+}