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_tests', | 8 'target_name': 'ppapi_tests', |
| 9 'type': 'loadable_module', | 9 'type': 'loadable_module', |
| 10 'include_dirs': [ | 10 'include_dirs': [ |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 398 { | 398 { |
| 399 'target_name': 'ppapi_example_printing', | 399 'target_name': 'ppapi_example_printing', |
| 400 'dependencies': [ | 400 'dependencies': [ |
| 401 'ppapi_example_skeleton', | 401 'ppapi_example_skeleton', |
| 402 'ppapi.gyp:ppapi_cpp', | 402 'ppapi.gyp:ppapi_cpp', |
| 403 ], | 403 ], |
| 404 'sources': [ | 404 'sources': [ |
| 405 'examples/printing/printing.cc', | 405 'examples/printing/printing.cc', |
| 406 ], | 406 ], |
| 407 }, | 407 }, |
| 408 { | |
| 409 'target_name': 'ppapi_example_content_decryption_module', | |
|
ddorwin
2012/07/13 19:19:48
The "wrapper" will not be a test, so we'll eventua
| |
| 410 'dependencies': [ | |
| 411 'ppapi_example_skeleton', | |
| 412 'ppapi.gyp:ppapi_cpp', | |
| 413 ], | |
| 414 'sources': [ | |
| 415 'examples/content_decryption_module/content_decryption_module.cc', | |
| 416 ], | |
| 417 }, | |
| 408 ], | 418 ], |
| 409 } | 419 } |
| OLD | NEW |