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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 7863003: Mouse lock implementation, including the renderer side and the Windows version of the browser side. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove two tab chars. Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 'target_name': 'ppapi_example_audio', 270 'target_name': 'ppapi_example_audio',
271 'dependencies': [ 271 'dependencies': [
272 'ppapi_example_skeleton', 272 'ppapi_example_skeleton',
273 'ppapi.gyp:ppapi_cpp', 273 'ppapi.gyp:ppapi_cpp',
274 ], 274 ],
275 'sources': [ 275 'sources': [
276 'examples/audio/audio.cc', 276 'examples/audio/audio.cc',
277 ], 277 ],
278 }, 278 },
279 { 279 {
280 'target_name': 'ppapi_example_mouse_lock',
281 'dependencies': [
282 'ppapi_example_skeleton',
283 'ppapi.gyp:ppapi_cpp',
284 ],
285 'sources': [
286 'examples/mouse_lock/mouse_lock.cc',
287 ],
288 },
289 {
280 'target_name': 'ppapi_example_file_chooser', 290 'target_name': 'ppapi_example_file_chooser',
281 'dependencies': [ 291 'dependencies': [
282 'ppapi_example_skeleton', 292 'ppapi_example_skeleton',
283 'ppapi.gyp:ppapi_cpp', 293 'ppapi.gyp:ppapi_cpp',
284 ], 294 ],
285 'sources': [ 295 'sources': [
286 'examples/file_chooser/file_chooser.cc', 296 'examples/file_chooser/file_chooser.cc',
287 ], 297 ],
288 }, 298 },
289 { 299 {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 ], 369 ],
360 'sources': [ 370 'sources': [
361 'examples/gles2/gles2.cc', 371 'examples/gles2/gles2.cc',
362 'examples/gles2/testdata.h', 372 'examples/gles2/testdata.h',
363 ], 373 ],
364 }, 374 },
365 ], 375 ],
366 }] 376 }]
367 ] 377 ]
368 } 378 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698