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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 10993031: Refactor the URLResponseInfo to use new design (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert shim Created 8 years, 2 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) 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': 'ppapi_tests', 8 'target_name': 'ppapi_tests',
9 'type': 'loadable_module', 9 'type': 'loadable_module',
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 'target_name': 'ppapi_example_url_loader', 358 'target_name': 'ppapi_example_url_loader',
359 'dependencies': [ 359 'dependencies': [
360 'ppapi_example_skeleton', 360 'ppapi_example_skeleton',
361 'ppapi.gyp:ppapi_cpp', 361 'ppapi.gyp:ppapi_cpp',
362 ], 362 ],
363 'sources': [ 363 'sources': [
364 'examples/url_loader/streaming.cc', 364 'examples/url_loader/streaming.cc',
365 ], 365 ],
366 }, 366 },
367 { 367 {
368 'target_name': 'ppapi_example_url_loader_file',
369 'dependencies': [
370 'ppapi_example_skeleton',
371 'ppapi.gyp:ppapi_cpp',
372 ],
373 'sources': [
374 'examples/url_loader/stream_to_file.cc',
375 ],
376 },
377 {
368 'target_name': 'ppapi_example_gles2', 378 'target_name': 'ppapi_example_gles2',
369 'dependencies': [ 379 'dependencies': [
370 'ppapi_example_skeleton', 380 'ppapi_example_skeleton',
371 'ppapi.gyp:ppapi_cpp', 381 'ppapi.gyp:ppapi_cpp',
372 'ppapi.gyp:ppapi_gles2', 382 'ppapi.gyp:ppapi_gles2',
373 'ppapi.gyp:ppapi_egl', 383 'ppapi.gyp:ppapi_egl',
374 ], 384 ],
375 'include_dirs': [ 385 'include_dirs': [
376 'lib/gl/include', 386 'lib/gl/include',
377 ], 387 ],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'dependencies': [ 435 'dependencies': [
426 'ppapi_example_skeleton', 436 'ppapi_example_skeleton',
427 'ppapi.gyp:ppapi_cpp', 437 'ppapi.gyp:ppapi_cpp',
428 ], 438 ],
429 'sources': [ 439 'sources': [
430 'examples/printing/printing.cc', 440 'examples/printing/printing.cc',
431 ], 441 ],
432 }, 442 },
433 ], 443 ],
434 } 444 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698