1 # Copyright 2013 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.
14 # GN version: //extensions/common
15 'target_name': 'extensions_common_constants',
16 'type': 'static_library',
19 '<(INTERMEDIATE_DIR)',
22 '<@(extensions_common_constants_sources)',
24 # Disable c4267 warnings until we fix size_t to int truncations.
25 'msvs_disabled_warnings': [ 4267, ],
28 # GN version: //extensions/common:mojo
29 'target_name': 'extensions_common_mojo',
30 # The type of this target must be none. This is so that resources can
31 # depend upon this target for generating the js bindings files. Any
32 # generated cpp files must be listed explicitly in extensions_common
35 '../third_party/mojo/mojom_bindings_generator.gypi',
38 '<@(extensions_common_mojo_sources)',
42 # GN version: //extensions/common
43 'target_name': 'extensions_common',
44 'type': 'static_library',
46 '../components/components.gyp:crx_file',
47 '../components/components.gyp:url_matcher',
48 '../content/content.gyp:content_common',
49 '../crypto/crypto.gyp:crypto',
50 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
51 # For Mojo generated headers for generated_api.cc.
52 '../device/serial/serial.gyp:device_serial_mojo',
53 '../device/usb/usb.gyp:device_usb',
56 '../third_party/icu/icu.gyp:icuuc',
57 '../third_party/re2/re2.gyp:re2',
58 '../ui/base/ui_base.gyp:ui_base',
59 '../ui/gfx/gfx.gyp:gfx_geometry',
60 '../ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
61 '../url/url.gyp:url_lib',
62 '../third_party/libxml/libxml.gyp:libxml',
63 'common/api/api.gyp:extensions_api',
64 'extensions_resources.gyp:extensions_resources',
65 'extensions_strings.gyp:extensions_strings',
66 'extensions_common_constants',
67 'extensions_common_mojo',
71 '<(INTERMEDIATE_DIR)',
74 '<@(extensions_common_sources)',
76 # Mojom generated files should not be included in the common gypi source
77 # list because GN has proper mojom dependency support.
78 '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/keep_alive.mojom.cc',
79 '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/keep_alive.mojom.h',
80 '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/stash.mojom.cc',
81 '<(SHARED_INTERMEDIATE_DIR)/extensions/common/mojo/stash.mojom.h',
83 # Disable c4267 warnings until we fix size_t to int truncations.
84 'msvs_disabled_warnings': [ 4267, ],
87 # NaClModulesHandler does not use any code in NaCl, so no dependency
90 '<@(extensions_common_sources_nacl)',
95 '<@(extensions_common_sources_openssl)',
98 '../third_party/boringssl/boringssl.gyp:boringssl',
102 '<@(extensions_common_sources_nonopenssl)'
105 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
107 '../build/linux/system.gyp:ssl',
110 ['OS == "mac" or OS == "ios" or OS == "win"', {
112 '../third_party/nss/nss.gyp:nspr',
113 '../third_party/nss/nss.gyp:nss',
121 # GN version: //extensions/browser
122 'target_name': 'extensions_browser',
123 'type': 'static_library',
125 '../base/base.gyp:base',
126 '../base/base.gyp:base_prefs',
127 '../components/components.gyp:device_event_log_component',
128 '../components/components.gyp:keyed_service_content',
129 '../components/components.gyp:keyed_service_core',
130 '../components/components.gyp:onc_component',
131 '../components/components.gyp:pref_registry',
132 '../components/components.gyp:sessions_content',
133 '../components/components.gyp:storage_monitor',
134 '../components/components.gyp:ui_zoom',
135 '../components/components.gyp:web_cache_browser',
136 '../components/components.gyp:web_modal',
137 '../content/content.gyp:content_browser',
138 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
139 '../device/serial/serial.gyp:device_serial',
140 '../google_apis/google_apis.gyp:google_apis',
141 '../skia/skia.gyp:skia',
142 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
143 '../third_party/re2/re2.gyp:re2',
144 'browser/api/api_registration.gyp:extensions_api_registration',
145 'common/api/api.gyp:cast_channel_proto',
146 'common/api/api.gyp:extensions_api',
148 'extensions_resources.gyp:extensions_resources',
149 'extensions_strings.gyp:extensions_strings',
153 '<(INTERMEDIATE_DIR)',
154 # Needed to access generated API headers.
155 '<(SHARED_INTERMEDIATE_DIR)',
158 '<@(extensions_browser_sources)',
161 # This condition exists only because the extensions_common_constants
162 # target is always built and thus this file gets evaluated by GYP.
163 # This does not need to be replicated into extensions/browser/BUILD.gn.
164 ['OS == "ios" or OS == "android"', {
166 '../components/components.gyp:storage_monitor',
171 '../chromeos/chromeos.gyp:chromeos',
174 '<@(extensions_browser_sources_chromeos)',
178 '<@(extensions_browser_sources_nonchromeos)',
181 ['OS == "win" or OS == "mac"', {
183 '../components/components.gyp:wifi_component',
186 '<@(extensions_browser_sources_win_or_mac)',
189 ['OS == "linux" and chromeos == 0', {
191 '../build/linux/system.gyp:dbus',
192 '../dbus/dbus.gyp:dbus',
195 '<@(extensions_browser_sources_linux_nonchromeos)',
199 # Disable c4267 warnings until we fix size_t to int truncations.
200 'msvs_disabled_warnings': [ 4267, ],
203 # GN version: //extensions/renderer
204 'target_name': 'extensions_renderer',
205 'type': 'static_library',
207 'extensions_resources.gyp:extensions_resources',
208 '../content/content.gyp:content_resources',
209 '../gin/gin.gyp:gin',
210 '../third_party/WebKit/public/blink.gyp:blink',
211 '../third_party/mojo/mojo_public.gyp:mojo_js_bindings',
217 '<@(extensions_renderer_sources)',
219 # Disable c4267 warnings until we fix size_t to int truncations.
220 'msvs_disabled_warnings': [ 4267, ],
223 # GN version: //extensions/utility
224 'target_name': 'extensions_utility',
225 'type': 'static_library',
227 '../content/content.gyp:content_utility',
228 '../third_party/zlib/google/zip.gyp:zip',
230 'extensions_strings.gyp:extensions_strings',
236 '<@(extensions_utility_sources)',
240 # GN version: //extensions:test_support
241 'target_name': 'extensions_test_support',
242 'type': 'static_library',
244 '../base/base.gyp:base',
245 '../base/base.gyp:base_prefs_test_support',
246 '../components/components.gyp:user_prefs',
247 '../content/content.gyp:content_browser',
248 '../content/content.gyp:content_common',
249 '../content/content_shell_and_tests.gyp:test_support_content',
250 '../net/net.gyp:net_test_support',
251 '../testing/gtest.gyp:gtest',
252 'browser/api/api_registration.gyp:extensions_api_registration',
253 'common/api/api.gyp:cast_channel_proto',
254 'common/api/api.gyp:extensions_api',
255 'extensions_browser',
257 'extensions_resources.gyp:extensions_resources',
261 '<(SHARED_INTERMEDIATE_DIR)',
264 '<@(extensions_test_support_sources)',
266 # Disable c4267 warnings until we fix size_t to int truncations.
267 'msvs_disabled_warnings': [ 4267, ],
270 # The pak file generated by this target is intended to be shared by
271 # both shell and test targets. It was combined because it might help a
272 # little bit with build time by avoiding a repack step (one instead of
274 'target_name': 'extensions_shell_and_test_pak',
277 '../content/browser/devtools/devtools_resources.gyp:devtools_resources',
278 '../content/content.gyp:content_resources',
279 '../content/content_shell_and_tests.gyp:content_shell_resources',
280 '../third_party/WebKit/public/blink_resources.gyp:blink_resources',
281 '../ui/resources/ui_resources.gyp:ui_resources',
282 '../ui/strings/ui_strings.gyp:ui_strings',
283 'extensions_resources.gyp:extensions_resources',
284 'extensions_strings.gyp:extensions_strings',
285 'shell/app_shell_resources.gyp:app_shell_resources',
289 'action_name': 'repack_extensions_shell_and_test_pak',
292 '<(SHARED_INTERMEDIATE_DIR)/blink/public/resources/blink_resources.pak',
293 '<(SHARED_INTERMEDIATE_DIR)/content/app/strings/content_strings_en-US.pak',
294 '<(SHARED_INTERMEDIATE_DIR)/content/content_resources.pak',
295 '<(SHARED_INTERMEDIATE_DIR)/content/shell_resources.pak',
296 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_browser_resources_100_percent.pak',
297 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_renderer_resources.pak',
298 '<(SHARED_INTERMEDIATE_DIR)/extensions/extensions_resources.pak',
299 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell/app_shell_resources.pak',
300 '<(SHARED_INTERMEDIATE_DIR)/extensions/strings/extensions_strings_en-US.pak',
301 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_resources_100_percent.pak',
302 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/app_locale_settings_en-US.pak',
303 '<(SHARED_INTERMEDIATE_DIR)/ui/strings/ui_strings_en-US.pak',
304 '<(SHARED_INTERMEDIATE_DIR)/blink/devtools_resources.pak',
306 'pak_output': '<(PRODUCT_DIR)/extensions_shell_and_test.pak',
308 'includes': [ '../build/repack_action.gypi' ],