| OLD | NEW |
| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 'dependencies': [ | 193 'dependencies': [ |
| 194 'ppapi_example_skeleton', | 194 'ppapi_example_skeleton', |
| 195 'ppapi.gyp:ppapi_cpp', | 195 'ppapi.gyp:ppapi_cpp', |
| 196 ], | 196 ], |
| 197 'sources': [ | 197 'sources': [ |
| 198 'examples/mouse_lock/mouse_lock.cc', | 198 'examples/mouse_lock/mouse_lock.cc', |
| 199 ], | 199 ], |
| 200 }, | 200 }, |
| 201 | 201 |
| 202 { | 202 { |
| 203 'target_name': 'ppapi_example_gamepad', |
| 204 'dependencies': [ |
| 205 'ppapi_example_skeleton', |
| 206 'ppapi.gyp:ppapi_cpp', |
| 207 ], |
| 208 'sources': [ |
| 209 'examples/gamepad/gamepad.cc', |
| 210 ], |
| 211 }, |
| 212 |
| 213 { |
| 203 'target_name': 'ppapi_example_c_stub', | 214 'target_name': 'ppapi_example_c_stub', |
| 204 'dependencies': [ | 215 'dependencies': [ |
| 205 'ppapi_example_skeleton', | 216 'ppapi_example_skeleton', |
| 206 'ppapi.gyp:ppapi_c', | 217 'ppapi.gyp:ppapi_c', |
| 207 ], | 218 ], |
| 208 'sources': [ | 219 'sources': [ |
| 209 'examples/stub/stub.c', | 220 'examples/stub/stub.c', |
| 210 ], | 221 ], |
| 211 }, | 222 }, |
| 212 { | 223 { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 ], | 356 ], |
| 346 'include_dirs': [ | 357 'include_dirs': [ |
| 347 'lib/gl/include', | 358 'lib/gl/include', |
| 348 ], | 359 ], |
| 349 'sources': [ | 360 'sources': [ |
| 350 'examples/video_capture/video_capture.cc', | 361 'examples/video_capture/video_capture.cc', |
| 351 ], | 362 ], |
| 352 }, | 363 }, |
| 353 ], | 364 ], |
| 354 } | 365 } |
| OLD | NEW |