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', | 369 'target_name': 'ppapi_example_video_decode', |
| 370 'dependencies': [ | 370 'dependencies': [ |
| 371 'ppapi_example_skeleton', | 371 'ppapi_example_skeleton', |
| 372 'ppapi.gyp:ppapi_cpp', | 372 'ppapi.gyp:ppapi_cpp', |
| 373 'ppapi.gyp:ppapi_gles2', | 373 'ppapi.gyp:ppapi_gles2', |
| 374 'ppapi.gyp:ppapi_egl', | 374 'ppapi.gyp:ppapi_egl', |
| 375 ], | 375 ], |
| 376 'include_dirs': [ | 376 'include_dirs': [ |
| 377 'lib/gl/include', | 377 'lib/gl/include', |
| 378 ], | 378 ], |
| 379 'sources': [ | 379 'sources': [ |
| 380 'examples/gles2/gles2.cc', | 380 'examples/video_decode/video_decode.cc', |
| 381 'examples/gles2/testdata.h', | 381 'examples/video_decode/testdata.h', |
|
Ami GONE FROM CHROMIUM
2012/03/07 22:31:19
I think the gles2/testdata.h *delete* is missing f
| |
| 382 ], | 382 ], |
| 383 }, | 383 }, |
| 384 { | 384 { |
| 385 'target_name': 'ppapi_example_vc', | 385 'target_name': 'ppapi_example_vc', |
| 386 'dependencies': [ | 386 'dependencies': [ |
| 387 'ppapi_example_skeleton', | 387 'ppapi_example_skeleton', |
| 388 'ppapi.gyp:ppapi_cpp', | 388 'ppapi.gyp:ppapi_cpp', |
| 389 'ppapi.gyp:ppapi_gles2', | 389 'ppapi.gyp:ppapi_gles2', |
| 390 'ppapi.gyp:ppapi_egl', | 390 'ppapi.gyp:ppapi_egl', |
| 391 ], | 391 ], |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 411 'dependencies': [ | 411 'dependencies': [ |
| 412 'ppapi_example_skeleton', | 412 'ppapi_example_skeleton', |
| 413 'ppapi.gyp:ppapi_cpp', | 413 'ppapi.gyp:ppapi_cpp', |
| 414 ], | 414 ], |
| 415 'sources': [ | 415 'sources': [ |
| 416 'examples/printing/printing.cc', | 416 'examples/printing/printing.cc', |
| 417 ], | 417 ], |
| 418 }, | 418 }, |
| 419 ], | 419 ], |
| 420 } | 420 } |
| OLD | NEW |