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_tests', | 8 'target_name': 'ppapi_tests', |
9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
10 'include_dirs': [ | 10 'include_dirs': [ |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 { | 399 { |
400 'target_name': 'ppapi_example_printing', | 400 'target_name': 'ppapi_example_printing', |
401 'dependencies': [ | 401 'dependencies': [ |
402 'ppapi_example_skeleton', | 402 'ppapi_example_skeleton', |
403 'ppapi.gyp:ppapi_cpp', | 403 'ppapi.gyp:ppapi_cpp', |
404 ], | 404 ], |
405 'sources': [ | 405 'sources': [ |
406 'examples/printing/printing.cc', | 406 'examples/printing/printing.cc', |
407 ], | 407 ], |
408 }, | 408 }, |
| 409 { |
| 410 'target_name': 'ppapi_example_content_decryptor', |
| 411 'dependencies': [ |
| 412 'ppapi_example_skeleton', |
| 413 'ppapi.gyp:ppapi_cpp', |
| 414 'ppapi_internal.gyp:ppapi_shared', |
| 415 '../base/base.gyp:base', |
| 416 ], |
| 417 'sources': [ |
| 418 'examples/content_decryptor/content_decryptor.cc', |
| 419 ], |
| 420 }, |
409 ], | 421 ], |
410 } | 422 } |
OLD | NEW |