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

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

Issue 1554563002: Put more files under the enable_service_discovery build flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fix merge Created 4 years, 11 months 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') | chrome/test/BUILD.gn » ('j') | 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', 58 'launcher_page.idl',
60 'location.idl', 59 'location.idl',
61 'manifest_types.json', 60 'manifest_types.json',
62 'mdns.idl',
63 'media_galleries.idl', 61 'media_galleries.idl',
64 'metrics_private.json', 62 'metrics_private.json',
65 'notification_provider.idl', 63 'notification_provider.idl',
66 'notifications.idl', 64 'notifications.idl',
67 'omnibox.json', 65 'omnibox.json',
68 'page_capture.json', 66 'page_capture.json',
69 'passwords_private.idl', 67 'passwords_private.idl',
70 'permissions.json', 68 'permissions.json',
71 'preferences_private.json', 69 'preferences_private.json',
72 'resources_private.idl', 70 'resources_private.idl',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'terminal_private.json', 127 'terminal_private.json',
130 'users_private.idl', 128 'users_private.idl',
131 'wallpaper.json', 129 'wallpaper.json',
132 'wallpaper_private.json', 130 'wallpaper_private.json',
133 ], 131 ],
134 'chromeos_non_compiled_schema_files': [ 132 'chromeos_non_compiled_schema_files': [
135 'chromeos_info_private.json', 133 'chromeos_info_private.json',
136 'media_player_private.json', 134 'media_player_private.json',
137 ], 135 ],
138 136
137 'service_discovery_schema_files': [
138 'gcd_private.idl',
139 'mdns.idl',
140 ],
141
139 'webrtc_schema_files': [ 142 'webrtc_schema_files': [
140 'cast_streaming_receiver_session.idl', 143 'cast_streaming_receiver_session.idl',
141 'cast_streaming_rtp_stream.idl', 144 'cast_streaming_rtp_stream.idl',
142 'cast_streaming_session.idl', 145 'cast_streaming_session.idl',
143 'cast_streaming_udp_transport.idl', 146 'cast_streaming_udp_transport.idl',
144 ], 147 ],
145 148
146 'non_compiled_schema_files': [ 149 'non_compiled_schema_files': [
147 '<@(main_non_compiled_schema_files)', 150 '<@(main_non_compiled_schema_files)',
148 ], 151 ],
(...skipping 17 matching lines...) Expand all
166 ], 169 ],
167 'non_compiled_schema_files': [ 170 'non_compiled_schema_files': [
168 '<@(chromeos_non_compiled_schema_files)', 171 '<@(chromeos_non_compiled_schema_files)',
169 ], 172 ],
170 }], 173 }],
171 ['OS=="linux" or OS=="win"', { 174 ['OS=="linux" or OS=="win"', {
172 'schema_files': [ 175 'schema_files': [
173 'input_ime.json', 176 'input_ime.json',
174 ], 177 ],
175 }], 178 }],
179 ['enable_service_discovery==1', {
180 'schema_files': [
181 '<@(service_discovery_schema_files)',
182 ],
183 }],
176 ['enable_webrtc==1', { 184 ['enable_webrtc==1', {
177 'schema_files': [ 185 'schema_files': [
178 '<@(webrtc_schema_files)', 186 '<@(webrtc_schema_files)',
179 ], 187 ],
180 }], 188 }],
181 ], 189 ],
182 'cc_dir': 'chrome/common/extensions/api', 190 'cc_dir': 'chrome/common/extensions/api',
183 'root_namespace': 'extensions::api::%(namespace)s', 191 'root_namespace': 'extensions::api::%(namespace)s',
184 'bundle_name': 'Chrome', 192 'bundle_name': 'Chrome',
185 'impl_dir_': 'chrome/browser/extensions/api', 193 'impl_dir_': 'chrome/browser/extensions/api',
186 }, 194 },
187 } 195 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/schemas.gni ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698