Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(104)

Side by Side Diff: chrome/common/extensions/api/schemas.gypi

Issue 1482643002: Exclude some extension apis for Aura Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/extensions/api/schemas.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'sources': [ 6 'sources': [
7 '<@(schema_files)', 7 '<@(schema_files)',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'main_schema_files': [ 10 'main_schema_files': [
(...skipping 26 matching lines...) Expand all
37 'desktop_capture.json', 37 'desktop_capture.json',
38 'developer_private.idl', 38 'developer_private.idl',
39 'dial.idl', 39 'dial.idl',
40 'downloads.idl', 40 'downloads.idl',
41 'downloads_internal.idl', 41 'downloads_internal.idl',
42 'easy_unlock_private.idl', 42 'easy_unlock_private.idl',
43 'experience_sampling_private.json', 43 'experience_sampling_private.json',
44 'feedback_private.idl', 44 'feedback_private.idl',
45 'file_system.idl', 45 'file_system.idl',
46 'font_settings.json', 46 'font_settings.json',
47 'gcd_private.idl',
48 'gcm.json', 47 'gcm.json',
49 'hangouts_private.idl', 48 'hangouts_private.idl',
50 'history.json', 49 'history.json',
51 'hotword_private.idl', 50 'hotword_private.idl',
52 'i18n.json', 51 'i18n.json',
53 'identity.idl', 52 'identity.idl',
54 'identity_private.idl', 53 'identity_private.idl',
55 'image_writer_private.idl', 54 'image_writer_private.idl',
56 'inline_install_private.idl', 55 'inline_install_private.idl',
57 'instance_id.json', 56 'instance_id.json',
58 'language_settings_private.idl', 57 'language_settings_private.idl',
59 'launcher_page.idl',
60 'location.idl', 58 'location.idl',
61 'manifest_types.json', 59 'manifest_types.json',
62 'mdns.idl',
63 'media_galleries.idl', 60 'media_galleries.idl',
64 'metrics_private.json', 61 'metrics_private.json',
65 'notification_provider.idl', 62 'notification_provider.idl',
66 'notifications.idl', 63 'notifications.idl',
67 'omnibox.json', 64 'omnibox.json',
68 'page_capture.json', 65 'page_capture.json',
69 'passwords_private.idl', 66 'passwords_private.idl',
70 'permissions.json', 67 'permissions.json',
71 'preferences_private.json', 68 'preferences_private.json',
72 'resources_private.idl', 69 'resources_private.idl',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'terminal_private.json', 126 'terminal_private.json',
130 'users_private.idl', 127 'users_private.idl',
131 'wallpaper.json', 128 'wallpaper.json',
132 'wallpaper_private.json', 129 'wallpaper_private.json',
133 ], 130 ],
134 'chromeos_non_compiled_schema_files': [ 131 'chromeos_non_compiled_schema_files': [
135 'chromeos_info_private.json', 132 'chromeos_info_private.json',
136 'media_player_private.json', 133 'media_player_private.json',
137 ], 134 ],
138 135
136 # Non Android schemas.
137 'non_android_schema_files': [
138 'gcd_private.idl',
139 'launcher_page.idl',
140 'mdns.idl',
141 ],
142
139 'webrtc_schema_files': [ 143 'webrtc_schema_files': [
140 'cast_streaming_receiver_session.idl', 144 'cast_streaming_receiver_session.idl',
141 'cast_streaming_rtp_stream.idl', 145 'cast_streaming_rtp_stream.idl',
142 'cast_streaming_session.idl', 146 'cast_streaming_session.idl',
143 'cast_streaming_udp_transport.idl', 147 'cast_streaming_udp_transport.idl',
144 ], 148 ],
145 149
146 'non_compiled_schema_files': [ 150 'non_compiled_schema_files': [
147 '<@(main_non_compiled_schema_files)', 151 '<@(main_non_compiled_schema_files)',
148 ], 152 ],
(...skipping 17 matching lines...) Expand all
166 ], 170 ],
167 'non_compiled_schema_files': [ 171 'non_compiled_schema_files': [
168 '<@(chromeos_non_compiled_schema_files)', 172 '<@(chromeos_non_compiled_schema_files)',
169 ], 173 ],
170 }], 174 }],
171 ['enable_webrtc==1', { 175 ['enable_webrtc==1', {
172 'schema_files': [ 176 'schema_files': [
173 '<@(webrtc_schema_files)', 177 '<@(webrtc_schema_files)',
174 ], 178 ],
175 }], 179 }],
180 ['OS!="android"', {
181 'schema_files': [
182 '<@(non_android_schema_files)',
183 ],
184 }],
176 ], 185 ],
177 'cc_dir': 'chrome/common/extensions/api', 186 'cc_dir': 'chrome/common/extensions/api',
178 'root_namespace': 'extensions::api::%(namespace)s', 187 'root_namespace': 'extensions::api::%(namespace)s',
179 'bundle_name': 'Chrome', 188 'bundle_name': 'Chrome',
180 'impl_dir_': 'chrome/browser/extensions/api', 189 'impl_dir_': 'chrome/browser/extensions/api',
181 }, 190 },
182 } 191 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/schemas.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698