Chromium Code Reviews| OLD | NEW |
|---|---|
| 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_example', | 8 'target_name': 'ppapi_example', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 'ppapi.gyp:ppapi_cpp' | 10 'ppapi.gyp:ppapi_cpp' |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 359 'target_name': 'ppapi_example_url_loader', | 359 'target_name': 'ppapi_example_url_loader', |
| 360 'dependencies': [ | 360 'dependencies': [ |
| 361 'ppapi_example_skeleton', | 361 'ppapi_example_skeleton', |
| 362 'ppapi.gyp:ppapi_cpp', | 362 'ppapi.gyp:ppapi_cpp', |
| 363 ], | 363 ], |
| 364 'sources': [ | 364 'sources': [ |
| 365 'examples/url_loader/streaming.cc', | 365 'examples/url_loader/streaming.cc', |
| 366 ], | 366 ], |
| 367 }, | 367 }, |
| 368 { | 368 { |
| 369 'target_name': 'ppapi_example_gles2', | |
| 370 'dependencies': [ | |
| 371 'ppapi_example_skeleton', | |
| 372 'ppapi.gyp:ppapi_cpp', | |
| 373 'ppapi.gyp:ppapi_gles2', | |
| 374 'ppapi.gyp:ppapi_egl', | |
| 375 ], | |
| 376 'include_dirs': [ | |
| 377 'lib/gl/include', | |
| 378 ], | |
| 379 'sources': [ | |
| 380 'examples/gles2/gles2.cc', | |
| 381 'examples/gles2/testdata.h', | |
|
Ami GONE FROM CHROMIUM
2012/03/07 23:59:38
Drop this?
| |
| 382 ], | |
| 383 }, | |
| 384 { | |
| 369 'target_name': 'ppapi_example_video_decode', | 385 'target_name': 'ppapi_example_video_decode', |
| 370 'dependencies': [ | 386 'dependencies': [ |
| 371 'ppapi_example_skeleton', | 387 'ppapi_example_skeleton', |
| 372 'ppapi.gyp:ppapi_cpp', | 388 'ppapi.gyp:ppapi_cpp', |
| 373 'ppapi.gyp:ppapi_gles2', | 389 'ppapi.gyp:ppapi_gles2', |
| 374 'ppapi.gyp:ppapi_egl', | 390 'ppapi.gyp:ppapi_egl', |
| 375 ], | 391 ], |
| 376 'include_dirs': [ | 392 'include_dirs': [ |
| 377 'lib/gl/include', | 393 'lib/gl/include', |
| 378 ], | 394 ], |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 411 'dependencies': [ | 427 'dependencies': [ |
| 412 'ppapi_example_skeleton', | 428 'ppapi_example_skeleton', |
| 413 'ppapi.gyp:ppapi_cpp', | 429 'ppapi.gyp:ppapi_cpp', |
| 414 ], | 430 ], |
| 415 'sources': [ | 431 'sources': [ |
| 416 'examples/printing/printing.cc', | 432 'examples/printing/printing.cc', |
| 417 ], | 433 ], |
| 418 }, | 434 }, |
| 419 ], | 435 ], |
| 420 } | 436 } |
| OLD | NEW |