blob: a04e7897fdcd5085f1ad98eabd6fc0a638c3e329 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 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("//build/config/features.gni")
import("//extensions/common/api/schema.gni")
import("//extensions/features/features.gni")
import("//mojo/public/tools/bindings/mojom.gni")
import("//tools/json_schema_compiler/json_schema_api.gni")
assert(enable_extensions)
json_schema_api("generated_api") {
sources = extensions_api_schema_files
schemas = true
bundle = true
bundle_name = ""
root_namespace = extensions_api_root_namespace
uncompiled_sources = extensions_api_uncompiled_sources
uncompiled_bundle_schema_sources =
extensions_api_uncompiled_bundle_schema_sources
deps = [
"//base",
"//extensions/features",
]
}
mojom("mojom") {
sources = [
"mime_handler.mojom",
]
}
group("api") {
public_deps = [
":generated_api",
":mojom",
"//extensions/features",
]
}
|