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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 'tests/test_uma.cc', | 231 'tests/test_uma.cc', |
232 'tests/test_uma.h', | 232 'tests/test_uma.h', |
233 'tests/test_url_loader.cc', | 233 'tests/test_url_loader.cc', |
234 'tests/test_url_loader.h', | 234 'tests/test_url_loader.h', |
235 'tests/test_url_util.cc', | 235 'tests/test_url_util.cc', |
236 'tests/test_url_util.h', | 236 'tests/test_url_util.h', |
237 'tests/test_utils.cc', | 237 'tests/test_utils.cc', |
238 'tests/test_utils.h', | 238 'tests/test_utils.h', |
239 'tests/test_video_decoder.cc', | 239 'tests/test_video_decoder.cc', |
240 'tests/test_video_decoder.h', | 240 'tests/test_video_decoder.h', |
| 241 'examples/video_decoder/video_decoder_session.cc', |
| 242 'examples/video_decoder/video_decoder_session.h', |
241 | 243 |
242 # Deprecated test cases. | 244 # Deprecated test cases. |
243 'tests/test_instance_deprecated.cc', | 245 'tests/test_instance_deprecated.cc', |
244 'tests/test_instance_deprecated.h', | 246 'tests/test_instance_deprecated.h', |
245 'tests/test_var_deprecated.cc', | 247 'tests/test_var_deprecated.cc', |
246 'tests/test_var_deprecated.h', | 248 'tests/test_var_deprecated.h', |
247 ], | 249 ], |
248 'dependencies': [ | 250 'dependencies': [ |
249 'ppapi.gyp:ppapi_cpp' | 251 'ppapi.gyp:ppapi_cpp' |
250 ], | 252 ], |
| 253 'include_dirs': [ |
| 254 'lib/gl/include', |
| 255 ], |
251 'conditions': [ | 256 'conditions': [ |
252 ['OS=="win"', { | 257 ['OS=="win"', { |
253 'defines': [ | 258 'defines': [ |
254 '_CRT_SECURE_NO_DEPRECATE', | 259 '_CRT_SECURE_NO_DEPRECATE', |
255 '_CRT_NONSTDC_NO_WARNINGS', | 260 '_CRT_NONSTDC_NO_WARNINGS', |
256 '_CRT_NONSTDC_NO_DEPRECATE', | 261 '_CRT_NONSTDC_NO_DEPRECATE', |
257 '_SCL_SECURE_NO_DEPRECATE', | 262 '_SCL_SECURE_NO_DEPRECATE', |
258 ], | 263 ], |
259 }], | 264 }], |
260 ['OS=="mac"', { | 265 ['OS=="mac"', { |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 'proxy/plugin_dispatcher_unittest.cc', | 314 'proxy/plugin_dispatcher_unittest.cc', |
310 'proxy/plugin_resource_tracker_unittest.cc', | 315 'proxy/plugin_resource_tracker_unittest.cc', |
311 'proxy/plugin_var_tracker_unittest.cc', | 316 'proxy/plugin_var_tracker_unittest.cc', |
312 'proxy/ppapi_proxy_test.cc', | 317 'proxy/ppapi_proxy_test.cc', |
313 'proxy/ppapi_proxy_test.h', | 318 'proxy/ppapi_proxy_test.h', |
314 'proxy/serialized_var_unittest.cc', | 319 'proxy/serialized_var_unittest.cc', |
315 ], | 320 ], |
316 }, | 321 }, |
317 ], | 322 ], |
318 } | 323 } |
OLD | NEW |