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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 9814015: Add new MouseCursor interface for setting the mouse cursor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 # Not to strip important symbols by -Wl,-dead_strip. 217 # Not to strip important symbols by -Wl,-dead_strip.
218 '-Wl,-exported_symbol,_PPP_GetInterface', 218 '-Wl,-exported_symbol,_PPP_GetInterface',
219 '-Wl,-exported_symbol,_PPP_InitializeModule', 219 '-Wl,-exported_symbol,_PPP_InitializeModule',
220 '-Wl,-exported_symbol,_PPP_ShutdownModule' 220 '-Wl,-exported_symbol,_PPP_ShutdownModule'
221 ]}, 221 ]},
222 }], 222 }],
223 ], 223 ],
224 }, 224 },
225 }, 225 },
226 { 226 {
227 'target_name': 'ppapi_example_mouse_cursor',
228 'dependencies': [
229 'ppapi_example_skeleton',
230 'ppapi.gyp:ppapi_cpp',
231 ],
232 'sources': [
233 'examples/mouse_cursor/mouse_cursor.cc',
234 ],
235 },
236 {
227 'target_name': 'ppapi_example_mouse_lock', 237 'target_name': 'ppapi_example_mouse_lock',
228 'dependencies': [ 238 'dependencies': [
229 'ppapi_example_skeleton', 239 'ppapi_example_skeleton',
230 'ppapi.gyp:ppapi_cpp', 240 'ppapi.gyp:ppapi_cpp',
231 ], 241 ],
232 'sources': [ 242 'sources': [
233 'examples/mouse_lock/mouse_lock.cc', 243 'examples/mouse_lock/mouse_lock.cc',
234 ], 244 ],
235 }, 245 },
236 246
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 'dependencies': [ 436 'dependencies': [
427 'ppapi_example_skeleton', 437 'ppapi_example_skeleton',
428 'ppapi.gyp:ppapi_cpp', 438 'ppapi.gyp:ppapi_cpp',
429 ], 439 ],
430 'sources': [ 440 'sources': [
431 'examples/printing/printing.cc', 441 'examples/printing/printing.cc',
432 ], 442 ],
433 }, 443 },
434 ], 444 ],
435 } 445 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698