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

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: fix typo 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'wallpaper.json', 128 'wallpaper.json',
129 'wallpaper_private.json', 129 'wallpaper_private.json',
130 ], 130 ],
131 'chromeos_non_compiled_schema_files': [ 131 'chromeos_non_compiled_schema_files': [
132 'chromeos_info_private.json', 132 'chromeos_info_private.json',
133 'media_player_private.json', 133 'media_player_private.json',
134 ], 134 ],
135 135
136 # Non Android schemas. 136 # Non Android schemas.
137 'non_android_schema_files': [ 137 'non_android_schema_files': [
138 'launcher_page.idl',
139 ],
140
141 'service_discovery_schema_files': [
138 'gcd_private.idl', 142 'gcd_private.idl',
139 'launcher_page.idl',
140 'mdns.idl', 143 'mdns.idl',
141 ], 144 ],
142 145
143 'webrtc_schema_files': [ 146 'webrtc_schema_files': [
144 'cast_streaming_receiver_session.idl', 147 'cast_streaming_receiver_session.idl',
145 'cast_streaming_rtp_stream.idl', 148 'cast_streaming_rtp_stream.idl',
146 'cast_streaming_session.idl', 149 'cast_streaming_session.idl',
147 'cast_streaming_udp_transport.idl', 150 'cast_streaming_udp_transport.idl',
148 ], 151 ],
149 152
(...skipping 20 matching lines...) Expand all
170 ], 173 ],
171 'non_compiled_schema_files': [ 174 'non_compiled_schema_files': [
172 '<@(chromeos_non_compiled_schema_files)', 175 '<@(chromeos_non_compiled_schema_files)',
173 ], 176 ],
174 }], 177 }],
175 ['OS=="linux" or OS=="win"', { 178 ['OS=="linux" or OS=="win"', {
176 'schema_files': [ 179 'schema_files': [
177 'input_ime.json', 180 'input_ime.json',
178 ], 181 ],
179 }], 182 }],
183 ['OS!="android"', {
184 'schema_files': [
185 '<@(non_android_schema_files)',
186 ],
187 }],
188 ['enable_service_discovery==1', {
189 'schema_files': [
190 '<@(service_discovery_schema_files)',
191 ],
192 }],
180 ['enable_webrtc==1', { 193 ['enable_webrtc==1', {
181 'schema_files': [ 194 'schema_files': [
182 '<@(webrtc_schema_files)', 195 '<@(webrtc_schema_files)',
183 ], 196 ],
184 }], 197 }],
185 ['OS!="android"', {
186 'schema_files': [
187 '<@(non_android_schema_files)',
188 ],
189 }],
190 ], 198 ],
191 'cc_dir': 'chrome/common/extensions/api', 199 'cc_dir': 'chrome/common/extensions/api',
192 'root_namespace': 'extensions::api::%(namespace)s', 200 'root_namespace': 'extensions::api::%(namespace)s',
193 'bundle_name': 'Chrome', 201 'bundle_name': 'Chrome',
194 'impl_dir_': 'chrome/browser/extensions/api', 202 'impl_dir_': 'chrome/browser/extensions/api',
195 }, 203 },
196 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698