mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
Plaintext
# Copyright 2018 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("//chrome/common/extensions/api/api_sources.gni")
|
|
import("//chrome/common/features.gni")
|
|
import("//extensions/buildflags/buildflags.gni")
|
|
import("//tools/json_schema_compiler/json_schema_api.gni")
|
|
|
|
assert(enable_extensions,
|
|
"Cannot depend on extensions because enable_extensions=false.")
|
|
|
|
json_schema_api("api_registration") {
|
|
sources = chrome_extensions_api_schema_sources
|
|
impl_dir = "//chrome/browser/extensions/api"
|
|
bundle_registration = true
|
|
configs = [ "//build/config:precompiled_headers" ]
|
|
bundle_name = "Chrome"
|
|
root_namespace = chrome_extensions_api_root_namespace
|
|
schema_include_rules = chrome_extensions_api_schema_include_rules
|
|
|
|
uncompiled_sources = chrome_extensions_api_uncompiled_sources
|
|
|
|
deps = [
|
|
# Different APIs include headers from these targets.
|
|
"//content/public/browser",
|
|
"//extensions/browser",
|
|
|
|
# Different APIs include some headers from chrome/common that in turn
|
|
# include generated headers from these targets.
|
|
# TODO(brettw) this should be made unnecessary if possible.
|
|
"//chrome/common/extensions/api",
|
|
"//components/sync",
|
|
"//skia",
|
|
"//third_party/metrics_proto",
|
|
"//ui/accessibility:ax_enums_mojo",
|
|
]
|
|
if (is_chromeos) {
|
|
deps += [ "//components/drive:proto" ]
|
|
}
|
|
deps += [ "//extensions/common/api" ]
|
|
}
|