mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
31 lines
766 B
Plaintext
31 lines
766 B
Plaintext
|
# Copyright 2016 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/buildflags/buildflags.gni")
|
||
|
import("//mojo/public/tools/bindings/mojom.gni")
|
||
|
import("//tools/json_schema_compiler/json_features.gni")
|
||
|
|
||
|
assert(enable_extensions)
|
||
|
|
||
|
json_features("extension_features_unittest") {
|
||
|
feature_type = "APIFeature"
|
||
|
method_name = "AddUnittestAPIFeatures"
|
||
|
sources = [
|
||
|
"//chrome/test/data/extensions/extension_api_unittest/api_features.json",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
group("test_features") {
|
||
|
public_deps = [
|
||
|
":extension_features_unittest",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
mojom("mojo_bindings") {
|
||
|
sources = [
|
||
|
"mojom/inline_install.mojom",
|
||
|
]
|
||
|
}
|