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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 7330027: Add an example for using the URLLoader in streaming mode. This also avoids the (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 5 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'ppapi_example', 8 'target_name': 'ppapi_example',
9 'dependencies': [ 9 'dependencies': [
10 'ppapi.gyp:ppapi_cpp' 10 'ppapi.gyp:ppapi_cpp'
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 'target_name': 'ppapi_example_simple_font', 309 'target_name': 'ppapi_example_simple_font',
310 'dependencies': [ 310 'dependencies': [
311 'ppapi_example_skeleton', 311 'ppapi_example_skeleton',
312 'ppapi.gyp:ppapi_cpp', 312 'ppapi.gyp:ppapi_cpp',
313 ], 313 ],
314 'sources': [ 314 'sources': [
315 'examples/font/simple_font.cc', 315 'examples/font/simple_font.cc',
316 ], 316 ],
317 }, 317 },
318 { 318 {
319 'target_name': 'ppapi_example_url_loader',
320 'dependencies': [
321 'ppapi_example_skeleton',
322 'ppapi.gyp:ppapi_cpp',
323 ],
324 'sources': [
325 'examples/url_loader/streaming.cc',
326 ],
327 },
328 {
319 'target_name': 'ppapi_example_gles2', 329 'target_name': 'ppapi_example_gles2',
320 'dependencies': [ 330 'dependencies': [
321 'ppapi_example_skeleton', 331 'ppapi_example_skeleton',
322 'ppapi.gyp:ppapi_cpp', 332 'ppapi.gyp:ppapi_cpp',
323 'ppapi.gyp:ppapi_gles2', 333 'ppapi.gyp:ppapi_gles2',
324 'ppapi.gyp:ppapi_egl', 334 'ppapi.gyp:ppapi_egl',
325 ], 335 ],
326 'include_dirs': [ 336 'include_dirs': [
327 'lib/gl/include', 337 'lib/gl/include',
328 ], 338 ],
329 'sources': [ 339 'sources': [
330 'examples/gles2/gles2.cc', 340 'examples/gles2/gles2.cc',
331 'examples/gles2/testdata.h', 341 'examples/gles2/testdata.h',
332 ], 342 ],
333 }, 343 },
334 ], 344 ],
335 }] 345 }]
336 ] 346 ]
337 } 347 }
OLDNEW
« ppapi/examples/url_loader/url_loader.html ('K') | « ppapi/examples/url_loader/url_loader.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698