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

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: Rebased on origin/master and fixed a minor conflict Created 8 years, 6 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_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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698