mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
87 lines
2.1 KiB
Plaintext
87 lines
2.1 KiB
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.
|
||
|
|
||
|
extensions_api_schema_files_ = [
|
||
|
"alarms.idl",
|
||
|
"app_current_window_internal.idl",
|
||
|
"app_runtime.idl",
|
||
|
"app_view_guest_internal.json",
|
||
|
"app_window.idl",
|
||
|
"audio.idl",
|
||
|
"bluetooth.idl",
|
||
|
"bluetooth_low_energy.idl",
|
||
|
"bluetooth_private.idl",
|
||
|
"bluetooth_socket.idl",
|
||
|
"cast_channel.idl",
|
||
|
"cec_private.idl",
|
||
|
"clipboard.idl",
|
||
|
"declarative_net_request.idl",
|
||
|
"display_source.idl",
|
||
|
"dns.idl",
|
||
|
"document_scan.idl",
|
||
|
"events.json",
|
||
|
"extensions_manifest_types.json",
|
||
|
"extension_options_internal.idl",
|
||
|
"extension_view_internal.json",
|
||
|
"extension_types.json",
|
||
|
"feedback_private.idl",
|
||
|
"file_system.idl",
|
||
|
"guest_view_internal.json",
|
||
|
"management.json",
|
||
|
"hid.idl",
|
||
|
"idle.json",
|
||
|
"metrics_private.json",
|
||
|
"mime_handler_private.idl",
|
||
|
"mime_handler_view_guest_internal.json",
|
||
|
"mojo_private.idl",
|
||
|
"networking_private.idl",
|
||
|
"power.idl",
|
||
|
"printer_provider.idl",
|
||
|
"printer_provider_internal.idl",
|
||
|
"runtime.json",
|
||
|
"serial.idl",
|
||
|
"socket.idl",
|
||
|
"sockets_tcp.idl",
|
||
|
"sockets_tcp_server.idl",
|
||
|
"sockets_udp.idl",
|
||
|
"storage.json",
|
||
|
"system_cpu.idl",
|
||
|
"system_display.idl",
|
||
|
"system_memory.idl",
|
||
|
"system_network.idl",
|
||
|
"system_storage.idl",
|
||
|
"test.json",
|
||
|
"usb.idl",
|
||
|
"virtual_keyboard.idl",
|
||
|
"virtual_keyboard_private.json",
|
||
|
"web_request.json",
|
||
|
"web_view_internal.json",
|
||
|
]
|
||
|
|
||
|
if (is_chromeos) {
|
||
|
extensions_api_schema_files_ += [
|
||
|
"diagnostics.idl",
|
||
|
"lock_screen_data.idl",
|
||
|
"media_perception_private.idl",
|
||
|
"networking_config.idl",
|
||
|
"vpn_provider.idl",
|
||
|
"webcam_private.idl",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
extensions_api_schema_files =
|
||
|
get_path_info(extensions_api_schema_files_, "abspath")
|
||
|
|
||
|
extensions_api_uncompiled_sources =
|
||
|
get_path_info([ "web_request_internal.json" ], "abspath")
|
||
|
|
||
|
extensions_api_uncompiled_bundle_schema_sources =
|
||
|
get_path_info([
|
||
|
"declarative_web_request.json",
|
||
|
"web_view_request.json",
|
||
|
],
|
||
|
"abspath")
|
||
|
|
||
|
extensions_api_root_namespace = "extensions::api::%(namespace)s"
|