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

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: CPP interface migration complete 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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698