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

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: rebase 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
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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'terminal_private.json', 129 'terminal_private.json',
130 'users_private.idl', 130 'users_private.idl',
131 'wallpaper.json', 131 'wallpaper.json',
132 'wallpaper_private.json', 132 'wallpaper_private.json',
133 ], 133 ],
134 'chromeos_non_compiled_schema_files': [ 134 'chromeos_non_compiled_schema_files': [
135 'chromeos_info_private.json', 135 'chromeos_info_private.json',
136 'media_player_private.json', 136 'media_player_private.json',
137 ], 137 ],
138 138
139 'service_discovery_schema_files': [
140 'gcd_private.idl',
141 'mdns.idl',
142 ],
143
139 'webrtc_schema_files': [ 144 'webrtc_schema_files': [
140 'cast_streaming_receiver_session.idl', 145 'cast_streaming_receiver_session.idl',
141 'cast_streaming_rtp_stream.idl', 146 'cast_streaming_rtp_stream.idl',
142 'cast_streaming_session.idl', 147 'cast_streaming_session.idl',
143 'cast_streaming_udp_transport.idl', 148 'cast_streaming_udp_transport.idl',
144 ], 149 ],
145 150
146 'non_compiled_schema_files': [ 151 'non_compiled_schema_files': [
147 '<@(main_non_compiled_schema_files)', 152 '<@(main_non_compiled_schema_files)',
148 ], 153 ],
(...skipping 17 matching lines...) Expand all
166 ], 171 ],
167 'non_compiled_schema_files': [ 172 'non_compiled_schema_files': [
168 '<@(chromeos_non_compiled_schema_files)', 173 '<@(chromeos_non_compiled_schema_files)',
169 ], 174 ],
170 }], 175 }],
171 ['OS=="linux" or OS=="win"', { 176 ['OS=="linux" or OS=="win"', {
172 'schema_files': [ 177 'schema_files': [
173 'input_ime.json', 178 'input_ime.json',
174 ], 179 ],
175 }], 180 }],
181 ['enable_service_discovery==1', {
182 'schema_files': [
183 '<@(service_discovery_schema_files)',
184 ],
185 }],
176 ['enable_webrtc==1', { 186 ['enable_webrtc==1', {
177 'schema_files': [ 187 'schema_files': [
178 '<@(webrtc_schema_files)', 188 '<@(webrtc_schema_files)',
179 ], 189 ],
180 }], 190 }],
181 ], 191 ],
182 'cc_dir': 'chrome/common/extensions/api', 192 'cc_dir': 'chrome/common/extensions/api',
183 'root_namespace': 'extensions::api::%(namespace)s', 193 'root_namespace': 'extensions::api::%(namespace)s',
184 'bundle_name': 'Chrome', 194 'bundle_name': 'Chrome',
185 'impl_dir_': 'chrome/browser/extensions/api', 195 'impl_dir_': 'chrome/browser/extensions/api',
186 }, 196 },
187 } 197 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698