naiveproxy/chrome/common/extensions/api/api_sources.gni
2018-12-09 21:59:24 -05:00

161 lines
4.1 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("//build/config/features.gni")
import("//chrome/common/features.gni")
assert(enable_extensions)
schema_sources_ = [
"accessibility_features.json",
"accessibility_private.json",
"activity_log_private.json",
"cast_streaming_receiver_session.idl",
"cast_streaming_rtp_stream.idl",
"cast_streaming_session.idl",
"cast_streaming_udp_transport.idl",
"autofill_private.idl",
"automation.idl",
"automation_internal.idl",
"autotest_private.idl",
"bookmark_manager_private.json",
"bookmarks.json",
"braille_display_private.idl",
"browser.idl",
"chrome_web_view_internal.json",
"command_line_private.json",
"content_settings.json",
"context_menus_internal.json",
"context_menus.json",
"cookies.json",
"cryptotoken_private.idl",
"dashboard_private.json",
"data_reduction_proxy.json",
"debugger.json",
"desktop_capture.json",
"developer_private.idl",
"downloads.idl",
"downloads_internal.idl",
"enterprise_hardware_platform.idl",
"font_settings.json",
"gcm.json",
"history.json",
"i18n.json",
"identity.idl",
"identity_private.idl",
"image_writer_private.idl",
"inline_install_private.idl",
"instance_id.json",
"language_settings_private.idl",
"manifest_types.json",
"media_galleries.idl",
"notifications.idl",
"omnibox.json",
"page_capture.json",
"passwords_private.idl",
"permissions.json",
"preferences_private.json",
"resources_private.idl",
"safe_browsing_private.idl",
"sessions.json",
"settings_private.idl",
"signed_in_devices.idl",
"streams_private.idl",
"sync_file_system.idl",
"system_indicator.idl",
"system_private.json",
"tab_capture.idl",
"tabs.json",
"types.json",
"web_navigation.json",
# Despite the name, these APIs do not rely on any WebRTC-specific bits and as
# such do not belong in a conditional.
"webrtc_audio_private.idl",
"webrtc_desktop_capture_private.idl",
"webrtc_logging_private.idl",
"webstore_private.json",
"webstore_widget_private.idl",
"windows.json",
]
if (!is_android) {
schema_sources_ += [ "processes.idl" ]
}
if (is_chromeos || is_mac || is_win) {
schema_sources_ += [ "networking_cast_private.idl" ]
}
if (is_chromeos) {
schema_sources_ += [
"arc_apps_private.idl",
"certificate_provider.idl",
"certificate_provider_internal.idl",
"easy_unlock_private.idl",
"echo_private.json",
"enterprise_device_attributes.idl",
"enterprise_platform_keys.idl",
"enterprise_platform_keys_internal.idl",
"enterprise_platform_keys_private.json",
"file_browser_handler_internal.json",
"file_manager_private.idl",
"file_manager_private_internal.idl",
"file_system_provider.idl",
"file_system_provider_internal.idl",
"first_run_private.json",
"input_ime.json",
"input_method_private.json",
"launcher_search_provider.idl",
"platform_keys.idl",
"platform_keys_internal.idl",
"quick_unlock_private.idl",
"screenlock_private.idl",
"terminal_private.json",
"users_private.idl",
"wallpaper.json",
"wallpaper_private.json",
]
} else if (is_linux || is_win) {
schema_sources_ += [ "input_ime.json" ]
}
if (!is_chromeos) {
schema_sources_ += [ "enterprise_reporting_private.idl" ]
}
if (enable_print_preview && !is_chromeos) {
schema_sources_ += [ "cloud_print_private.json" ]
}
if (enable_service_discovery) {
schema_sources_ += [ "mdns.idl" ]
}
uncompiled_sources_ = [
"browsing_data.json",
"extension.json",
"idltest.idl",
"music_manager_private.idl",
"top_sites.json",
]
if (is_chromeos) {
uncompiled_sources_ += [
"chromeos_info_private.json",
"media_player_private.json",
]
}
chrome_extensions_api_schema_sources = get_path_info(schema_sources_, "abspath")
chrome_extensions_api_uncompiled_sources =
get_path_info(uncompiled_sources_, "abspath")
chrome_extensions_api_root_namespace = "extensions::api::%(namespace)s"
chrome_extensions_api_schema_include_rules =
"extensions/common/api:extensions::api::%(namespace)s"