Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(363)

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 10545036: Add PPAPI decryptor interfaces. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implement enough thunk stuff to call into PluginInstance CDM stubs Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698