cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / chrome / common / extensions / api / schemas.gypi
blob346cee65f26b4d77b170dcc55de53b0e7dafcb7d
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.
6   'sources': [
7     '<@(schema_files)',
8   ],
9   'variables': {
10     'main_schema_files': [
11       'accessibility_features.json',
12       'accessibility_private.json',
13       'activity_log_private.json',
14       'audio_modem.idl',
15       'autofill_private.idl',
16       'automation.idl',
17       'automation_internal.idl',
18       'autotest_private.idl',
19       'bluetooth_low_energy.idl',
20       'bookmark_manager_private.json',
21       'bookmarks.json',
22       'braille_display_private.idl',
23       'browser.idl',
24       'chrome_web_view_internal.json',
25       'cloud_print_private.json',
26       'command_line_private.json',
27       'content_settings.json',
28       'context_menus_internal.json',
29       'context_menus.json',
30       'cookies.json',
31       'copresence.idl',
32       'copresence_private.idl',
33       'cryptotoken_private.idl',
34       'dashboard_private.json',
35       'data_reduction_proxy.json',
36       'debugger.json',
37       'desktop_capture.json',
38       'developer_private.idl',
39       'dial.idl',
40       'downloads.idl',
41       'downloads_internal.idl',
42       'easy_unlock_private.idl',
43       'experience_sampling_private.json',
44       'feedback_private.idl',
45       'file_system.idl',
46       'font_settings.json',
47       'gcd_private.idl',
48       'gcm.json',
49       'hangouts_private.idl',
50       'history.json',
51       'hotword_private.idl',
52       'i18n.json',
53       'identity.idl',
54       'identity_private.idl',
55       'image_writer_private.idl',
56       'inline_install_private.idl',
57       'instance_id.json',
58       'language_settings_private.idl',
59       'launcher_page.idl',
60       'location.idl',
61       'manifest_types.json',
62       'mdns.idl',
63       'media_galleries.idl',
64       'metrics_private.json',
65       'notification_provider.idl',
66       'notifications.idl',
67       'omnibox.json',
68       'page_capture.json',
69       'passwords_private.idl',
70       'permissions.json',
71       'preferences_private.json',
72       'reading_list_private.json',
73       'screenlock_private.idl',
74       'search_engines_private.idl',
75       'sessions.json',
76       'settings_private.idl',
77       'signed_in_devices.idl',
78       'streams_private.idl',
79       'sync_file_system.idl',
80       'system_indicator.idl',
81       'system_private.json',
82       'tab_capture.idl',
83       'tabs.json',
84       'types.json',
85       'web_navigation.json',
86       # Despite the name, this API does not rely on any
87       # WebRTC-specific bits and as such does not belong in
88       # the enable_webrtc==0 section below.
89       'webrtc_audio_private.idl',
90       'webrtc_desktop_capture_private.idl',
91       'webrtc_logging_private.idl',
92       'webstore_private.json',
93       'webstore_widget_private.idl',
94       'windows.json',
95     ],
96     'main_schema_include_rules': [
97       'extensions/common/api:extensions::api::%(namespace)s',
98     ],
99     'main_non_compiled_schema_files': [
100       'browsing_data.json',
101       'extension.json',
102       'idltest.idl',
103       'music_manager_private.idl',
104       'principals_private.idl',
105       'top_sites.json',
106     ],
108     # ChromeOS-specific schemas.
109     'chromeos_schema_files': [
110       'cast_devices_private.idl',
111       'certificate_provider.idl',
112       'certificate_provider_internal.idl',
113       'echo_private.json',
114       'enterprise_device_attributes.idl',
115       'enterprise_platform_keys.idl',
116       'enterprise_platform_keys_internal.idl',
117       'enterprise_platform_keys_private.json',
118       'file_browser_handler_internal.json',
119       'file_manager_private.idl',
120       'file_manager_private_internal.idl',
121       'file_system_provider.idl',
122       'file_system_provider_internal.idl',
123       'first_run_private.json',
124       'input_ime.json',
125       'launcher_search_provider.idl',
126       'log_private.idl',
127       'platform_keys.idl',
128       'platform_keys_internal.idl',
129       'terminal_private.json',
130       'users_private.idl',
131       'wallpaper.json',
132       'wallpaper_private.json',
133     ],
134     'chromeos_non_compiled_schema_files': [
135       'chromeos_info_private.json',
136       'media_player_private.json',
137     ],
139     'webrtc_schema_files': [
140       'cast_streaming_receiver_session.idl',
141       'cast_streaming_rtp_stream.idl',
142       'cast_streaming_session.idl',
143       'cast_streaming_udp_transport.idl',
144     ],
146     'non_compiled_schema_files': [
147       '<@(main_non_compiled_schema_files)',
148     ],
149     'schema_dependencies': [
150       '<(DEPTH)/extensions/common/api/api.gyp:extensions_api',
151     ],
152     'schema_files': [
153       '<@(main_schema_files)',
154     ],
155     'schema_include_rules': [
156       '<@(main_schema_include_rules)',
157     ],
159     'chromium_code': 1,
160     # Disable schema compiler to generate model extension API code.
161     # Only register the extension functions in extension system.
162     'conditions': [
163       ['chromeos==1', {
164         'schema_files': [
165           '<@(chromeos_schema_files)',
166         ],
167         'non_compiled_schema_files': [
168           '<@(chromeos_non_compiled_schema_files)',
169         ],
170       }],
171       ['enable_webrtc==1', {
172         'schema_files': [
173           '<@(webrtc_schema_files)',
174         ],
175       }],
176     ],
177     'cc_dir': 'chrome/common/extensions/api',
178     'root_namespace': 'extensions::api::%(namespace)s',
179     'bundle_name': 'Chrome',
180     'impl_dir_': 'chrome/browser/extensions/api',
181   },