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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 77813004: [WIP] PluginPrivateFileSystem example (won't commit) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « ppapi/examples/pluginfs/pluginfs.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 'target_name': 'ppapi_example_crxfs', 295 'target_name': 'ppapi_example_crxfs',
296 'dependencies': [ 296 'dependencies': [
297 'ppapi_example_skeleton', 297 'ppapi_example_skeleton',
298 'ppapi.gyp:ppapi_cpp', 298 'ppapi.gyp:ppapi_cpp',
299 ], 299 ],
300 'sources': [ 300 'sources': [
301 'examples/crxfs/crxfs.cc', 301 'examples/crxfs/crxfs.cc',
302 ], 302 ],
303 }, 303 },
304 { 304 {
305 'target_name': 'ppapi_example_pluginfs',
306 'dependencies': [
307 'ppapi_example_skeleton',
308 'ppapi.gyp:ppapi_cpp',
309 ],
310 'sources': [
311 'examples/pluginfs/pluginfs.cc',
312 ],
313 },
314 {
305 'target_name': 'ppapi_example_audio', 315 'target_name': 'ppapi_example_audio',
306 'dependencies': [ 316 'dependencies': [
307 'ppapi_example_skeleton', 317 'ppapi_example_skeleton',
308 'ppapi.gyp:ppapi_cpp', 318 'ppapi.gyp:ppapi_cpp',
309 ], 319 ],
310 'sources': [ 320 'sources': [
311 'examples/audio/audio.cc', 321 'examples/audio/audio.cc',
312 ], 322 ],
313 }, 323 },
314 { 324 {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 'ppapi.gyp:ppapi_cpp', 525 'ppapi.gyp:ppapi_cpp',
516 ], 526 ],
517 'sources': [ 527 'sources': [
518 'examples/printing/printing.cc', 528 'examples/printing/printing.cc',
519 ], 529 ],
520 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 530 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
521 'msvs_disabled_warnings': [ 4267, ], 531 'msvs_disabled_warnings': [ 4267, ],
522 }, 532 },
523 ], 533 ],
524 } 534 }
OLDNEW
« no previous file with comments | « ppapi/examples/pluginfs/pluginfs.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698