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

Side by Side Diff: chrome/common/extensions/api/api.gyp

Issue 83043005: Cast Extensions API: Factory method for creating a cast session (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed scope Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'api', 8 'target_name': 'api',
9 'type': 'static_library', 9 'type': 'static_library',
10 'sources': [ 10 'sources': [
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 'file_browser_handler_internal.json', 159 'file_browser_handler_internal.json',
160 'first_run_private.json', 160 'first_run_private.json',
161 'log_private.idl', 161 'log_private.idl',
162 'screenlock_private.idl', 162 'screenlock_private.idl',
163 'wallpaper.json', 163 'wallpaper.json',
164 'wallpaper_private.json', 164 'wallpaper_private.json',
165 ], 165 ],
166 }], 166 }],
167 ['enable_webrtc==1', { 167 ['enable_webrtc==1', {
168 'schema_files': [ 168 'schema_files': [
169 'cast_streaming_session.idl',
169 'webrtc_cast_send_transport.idl', 170 'webrtc_cast_send_transport.idl',
170 'webrtc_cast_udp_transport.idl', 171 'webrtc_cast_udp_transport.idl',
171 'webrtc_logging_private.idl', 172 'webrtc_logging_private.idl',
172 ], 173 ],
173 }], 174 }],
174 ], 175 ],
175 'cc_dir': 'chrome/common/extensions/api', 176 'cc_dir': 'chrome/common/extensions/api',
176 'root_namespace': 'extensions::api', 177 'root_namespace': 'extensions::api',
177 }, 178 },
178 'dependencies': [ 179 'dependencies': [
179 '<(DEPTH)/skia/skia.gyp:skia', 180 '<(DEPTH)/skia/skia.gyp:skia',
180 '<(DEPTH)/sync/sync.gyp:sync', 181 '<(DEPTH)/sync/sync.gyp:sync',
181 ], 182 ],
182 'conditions': [ 183 'conditions': [
183 ['chromeos==1', { 184 ['chromeos==1', {
184 'dependencies': [ 185 'dependencies': [
185 '<(DEPTH)/chrome/chrome.gyp:drive_proto', 186 '<(DEPTH)/chrome/chrome.gyp:drive_proto',
186 ], 187 ],
187 }], 188 }],
188 ], 189 ],
189 }, 190 },
190 ], 191 ],
191 } 192 }
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/_permission_features.json ('k') | chrome/common/extensions/api/cast_streaming_session.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698