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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 { | 431 { |
432 'target_name': 'ppapi_example_printing', | 432 'target_name': 'ppapi_example_printing', |
433 'dependencies': [ | 433 'dependencies': [ |
434 'ppapi_example_skeleton', | 434 'ppapi_example_skeleton', |
435 'ppapi.gyp:ppapi_cpp', | 435 'ppapi.gyp:ppapi_cpp', |
436 ], | 436 ], |
437 'sources': [ | 437 'sources': [ |
438 'examples/printing/printing.cc', | 438 'examples/printing/printing.cc', |
439 ], | 439 ], |
440 }, | 440 }, |
| 441 { |
| 442 'target_name': 'ppapi_example_content_decryption_module', |
| 443 'dependencies': [ |
| 444 'ppapi_example_skeleton', |
| 445 'ppapi.gyp:ppapi_cpp', |
| 446 ], |
| 447 'sources': [ |
| 448 'examples/content_decryption_module/content_decryption_module.cc', |
| 449 ], |
| 450 }, |
441 ], | 451 ], |
442 } | 452 } |
OLD | NEW |