1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni")
7 import("//build/config/ui.gni")
9 assert(enable_extensions)
11 gypi_values = exec_script(
12 "//build/gypi_to_gn.py",
13 [ rebase_path("../../chrome_browser_extensions.gypi") ],
15 [ "../../chrome_browser_extensions.gypi" ])
17 # GYP version: chrome/chrome_browser_extensions.gypi:browser_extensions
18 static_library("extensions") {
20 sources += rebase_path(
21 gypi_values.chrome_browser_extensions_enabled_sources,
26 # Since browser and browser_extensions actually depend on each other,
27 # we must omit the dependency from browser_extensions to browser.
28 # However, this means browser_extensions and browser should more or less
29 # have the same dependencies. Once browser_extensions is untangled from
30 # browser, then we can clean up these dependencies.
32 "//chrome/common/extensions/api",
33 "//content/public/browser",
36 "//chrome:extra_resources",
39 "//chrome/app/resources:platform_locale_settings",
40 "//chrome/app/theme:theme_resources",
41 "//chrome/browser/devtools",
42 "//chrome/browser/history:in_memory_url_index_cache_proto",
44 "//chrome/common/extensions/api:api_registration",
45 "//chrome/common/net",
46 "//chrome/common/safe_browsing:proto",
47 "//chrome/installer/util",
48 "//components/copresence",
49 "//components/omaha_query_params",
51 "//components/proximity_auth",
52 "//components/strings",
53 "//components/url_matcher",
54 "//content/app/resources",
55 "//content/public/common",
59 "//extensions/browser",
60 "//extensions/common/api",
61 "//extensions/common/api:api_registration",
62 "//extensions/strings",
67 "//third_party/WebKit/public:resources",
68 "//third_party/cacheinvalidation",
70 "//third_party/leveldatabase",
72 "//third_party/webrtc/modules/desktop_capture",
73 "//ui/accessibility:ax_gen",
84 sources += rebase_path(
85 gypi_values.chrome_browser_extensions_chromeos_sources,
88 "api/audio/audio_service_linux.cc",
89 "api/music_manager_private/device_id_linux.cc",
91 configs += [ "//build/config/linux:dbus" ]
93 "//third_party/libevent",
94 "//third_party/protobuf:protobuf_lite",
95 "//chromeos/ime:gencode",
102 sources += rebase_path(
103 gypi_values.chrome_browser_extensions_non_chromeos_sources,
109 "api/tabs/ash_panel_contents.cc",
110 "api/tabs/ash_panel_contents.h",
114 defines += [ USE_ATHENA ]
115 sources += rebase_path(
116 gypi_values.chrome_browser_extensions_athena_sources,
119 sources += rebase_path(
120 gypi_values.chrome_browser_extensions_non_athena_sources,
123 sources += rebase_path(
124 gypi_values.chrome_browser_extensions_chromeos_non_athena_sources,
130 configs += [ "//build/config/linux:fontconfig" ]
134 "//build/config/linux:x11",
137 "//ui/events:events_base",
138 "//ui/events/platform",
139 "//ui/events/platform/x11",
144 "api/audio/audio_service.cc",
148 if (enable_configuration_policy) {
149 deps += [ "//components/policy" ]
151 "policy_handlers.cc",
154 sources += rebase_path(
155 gypi_values.chrome_browser_extensions_policy_sources,
161 "api/webrtc_logging_private/webrtc_logging_private_api.cc",
165 "api/webrtc_logging_private/webrtc_logging_private_api_stub.cc",
170 deps += [ "//build/config/linux:libbrlapi" ]
171 sources += rebase_path(gypi_values.chrome_browser_extensions_brlapi_sources,
175 "api/braille_display_private/braille_controller_stub.cc",
182 "//ui/keyboard:resources",
186 # chromeos uses its own global_shortcut_listener, _x11 is not necessary.
187 if (is_chromeos || !use_x11) {
189 "global_shortcut_listener_x11.cc",
190 "global_shortcut_listener_x11.h",
194 if (safe_browsing_mode == 1) {
195 defines += [ "FULL_SAFE_BROWSING" ]
197 if (safe_browsing_mode == 2) {
198 defines += [ "MOBILE_SAFE_BROWSING" ]
201 if (is_win || is_mac) {
202 deps += [ "//components/wifi" ]
203 sources += rebase_path(
204 gypi_values.chrome_browser_extensions_networking_private_sources_winmac,
208 if (is_desktop_linux) {
209 sources += rebase_path(
210 gypi_values.chrome_browser_extensions_networking_private_sources_linux,
216 "//third_party/iaccessible2",
217 "//third_party/isimpledom",
219 } else if (!is_chromeos) {
221 "display_info_provider_aura.cc",
222 "display_info_provider_aura.h",
226 if (enable_app_list) {
227 sources += rebase_path(
228 gypi_values.chrome_browser_extensions_app_list_sources,
234 "global_shortcut_listener_ozone.cc",