Use a stub implementation of GlobalShortcutListener for Athena
[chromium-blink-merge.git] / chrome / browser / extensions / BUILD.gn
bloba0615710dde2418699f1d142349468d18226abaf
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") ],
14     "scope",
15     [ "../../chrome_browser_extensions.gypi" ])
17 # GYP version: chrome/chrome_browser_extensions.gypi:browser_extensions
18 static_library("extensions") {
19   sources = []
20   sources += rebase_path(
21       gypi_values.chrome_browser_extensions_enabled_sources,
22       ".", "//chrome")
24   defines = []
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.
31   public_deps = [
32     "//chrome/common/extensions/api",
33     "//content/public/browser",
34   ]
35   deps = [
36     "//chrome:extra_resources",
37     "//chrome:resources",
38     "//chrome:strings",
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",
43     "//chrome/common",
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",
50     "//components/onc",
51     "//components/proximity_auth",
52     "//components/strings",
53     "//components/url_matcher",
54     "//content/app/resources",
55     "//content/public/common",
56     "//crypto",
57     "//device/bluetooth",
58     "//device/hid",
59     "//extensions/browser",
60     "//extensions/common/api",
61     "//extensions/common/api:api_registration",
62     "//extensions/strings",
63     "//net",
64     "//skia",
65     "//storage/common",
66     "//sync",
67     "//third_party/WebKit/public:resources",
68     "//third_party/cacheinvalidation",
69     "//third_party/icu",
70     "//third_party/leveldatabase",
71     "//third_party/re2",
72     "//third_party/webrtc/modules/desktop_capture",
73     "//ui/accessibility:ax_gen",
74     "//ui/base",
75     "//ui/gfx",
76     "//ui/gfx/geometry",
77     "//ui/resources",
78     "//ui/strings",
79     "//url",
80     "//storage/browser",
81   ]
83   if (is_chromeos) {
84     sources += rebase_path(
85         gypi_values.chrome_browser_extensions_chromeos_sources,
86         ".", "//chrome")
87     sources -= [
88       "api/audio/audio_service_linux.cc",
89       "api/music_manager_private/device_id_linux.cc",
90     ]
91     configs += [ "//build/config/linux:dbus" ]
92     deps += [
93       "//third_party/libevent",
94       "//third_party/protobuf:protobuf_lite",
95       "//chromeos/ime:gencode",
96     ]
97   } else {
98     sources += [
99       "default_apps.cc",
100       "default_apps.h'"
101     ]
102     sources += rebase_path(
103         gypi_values.chrome_browser_extensions_non_chromeos_sources,
104         ".", "//chrome")
105   }
107   if (use_ash) {
108     sources += [
109       "api/tabs/ash_panel_contents.cc",
110       "api/tabs/ash_panel_contents.h",
111     ]
112   }
113   if (use_athena) {
114     defines += [ USE_ATHENA ]
115     sources += rebase_path(
116       gypi_values.chrome_browser_extensions_athena_sources,
117         ".", "//chrome")
118   } else {
119     sources += rebase_path(
120       gypi_values.chrome_browser_extensions_non_athena_sources,
121         ".", "//chrome")
122     if (is_chromeos) {
123       sources += rebase_path(
124         gypi_values.chrome_browser_extensions_chromeos_non_athena_sources,
125         ".", "//chrome")
126     }
127   }
129   if (is_linux) {
130     configs += [ "//build/config/linux:fontconfig" ]
131     deps += [ "//dbus" ]
132     if (use_x11) {
133       configs += [
134         "//build/config/linux:x11",
135       ]
136       deps += [
137         "//ui/events:events_base",
138         "//ui/events/platform",
139         "//ui/events/platform/x11",
140       ]
141     }
142   } else {
143     sources += [
144       "api/audio/audio_service.cc",
145     ]
146   }
148   if (enable_configuration_policy) {
149     deps += [ "//components/policy" ]
150     sources += [
151       "policy_handlers.cc",
152       "policy_handlers.h",
153     ]
154     sources += rebase_path(
155         gypi_values.chrome_browser_extensions_policy_sources,
156         ".", "//chrome")
157   }
159   if (enable_webrtc) {
160     sources += [
161       "api/webrtc_logging_private/webrtc_logging_private_api.cc",
162     ]
163   } else {
164     sources += [
165       "api/webrtc_logging_private/webrtc_logging_private_api_stub.cc",
166     ]
167   }
169   if (use_brlapi) {
170     deps += [ "//build/config/linux:libbrlapi" ]
171     sources += rebase_path(gypi_values.chrome_browser_extensions_brlapi_sources,
172                            ".", "//chrome")
173   } else {
174     sources += [
175       "api/braille_display_private/braille_controller_stub.cc",
176     ]
177   }
179   if (use_aura) {
180     deps += [
181       "//ui/keyboard",
182       "//ui/keyboard:resources",
183     ]
184   }
186   # chromeos uses its own global_shortcut_listener, _x11 is not necessary.
187   if (is_chromeos || !use_x11) {
188     sources -= [
189       "global_shortcut_listener_x11.cc",
190       "global_shortcut_listener_x11.h",
191     ]
192   }
194   if (safe_browsing_mode == 1) {
195     defines += [ "FULL_SAFE_BROWSING" ]
196   }
197   if (safe_browsing_mode == 2) {
198     defines += [ "MOBILE_SAFE_BROWSING" ]
199   }
201   if (is_win || is_mac) {
202     deps += [ "//components/wifi" ]
203     sources += rebase_path(
204         gypi_values.chrome_browser_extensions_networking_private_sources_winmac,
205         ".", "//chrome")
206   }
208   if (is_desktop_linux) {
209     sources += rebase_path(
210         gypi_values.chrome_browser_extensions_networking_private_sources_linux,
211         ".", "//chrome")
212   }
214   if (is_win) {
215     deps += [
216       "//third_party/iaccessible2",
217       "//third_party/isimpledom",
218     ]
219   } else if (!is_chromeos) {
220     sources += [
221       "display_info_provider_aura.cc",
222       "display_info_provider_aura.h",
223     ]
224   }
226   if (enable_app_list) {
227     sources += rebase_path(
228         gypi_values.chrome_browser_extensions_app_list_sources,
229         ".", "//chrome")
230   }
232   if (!use_ozone) {
233     sources -= [
234       "global_shortcut_listener_ozone.cc",
235     ]
236   }