summaryrefslogtreecommitdiff
path: root/chromium/extensions/common/api/BUILD.gn
blob: 8382c61ecaeddee1de3cd537c31b974f2ddee22e (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
41
42
43
# 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",
  ]

  # TODO(crbug.com/714018): Convert the implementation to use OnceCallback.
  use_once_callback = false
}

group("api") {
  public_deps = [
    ":generated_api",
    ":mojom",
    "//extensions/features",
  ]
}