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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'proxy/plugin_resource_tracker_unittest.cc', | 213 'proxy/plugin_resource_tracker_unittest.cc', |
214 'proxy/plugin_var_tracker_unittest.cc', | 214 'proxy/plugin_var_tracker_unittest.cc', |
215 'proxy/ppapi_proxy_test.cc', | 215 'proxy/ppapi_proxy_test.cc', |
216 'proxy/ppapi_proxy_test.h', | 216 'proxy/ppapi_proxy_test.h', |
217 'proxy/ppb_var_unittest.cc', | 217 'proxy/ppb_var_unittest.cc', |
218 'proxy/ppp_instance_private_proxy_unittest.cc', | 218 'proxy/ppp_instance_private_proxy_unittest.cc', |
219 'proxy/ppp_instance_proxy_unittest.cc', | 219 'proxy/ppp_instance_proxy_unittest.cc', |
220 'proxy/ppp_messaging_proxy_unittest.cc', | 220 'proxy/ppp_messaging_proxy_unittest.cc', |
221 'proxy/serialized_var_unittest.cc', | 221 'proxy/serialized_var_unittest.cc', |
222 'shared_impl/resource_tracker_unittest.cc', | 222 'shared_impl/resource_tracker_unittest.cc', |
| 223 'shared_impl/test_globals.cc', |
| 224 'shared_impl/test_globals.h', |
223 ], | 225 ], |
224 }, | 226 }, |
225 ], | 227 ], |
226 | 228 |
227 'conditions': [ | 229 'conditions': [ |
228 # NOTE: the PPAPI examples fail to build on mac & windows. | 230 # NOTE: the PPAPI examples fail to build on mac & windows. |
229 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. | 231 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. |
230 ['OS!="mac"', { | 232 ['OS!="mac"', { |
231 'targets': [ | 233 'targets': [ |
232 { | 234 { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 'lib/gl/include', | 402 'lib/gl/include', |
401 ], | 403 ], |
402 'sources': [ | 404 'sources': [ |
403 'examples/video_capture/video_capture.cc', | 405 'examples/video_capture/video_capture.cc', |
404 ], | 406 ], |
405 }, | 407 }, |
406 ], | 408 ], |
407 }] | 409 }] |
408 ] | 410 ] |
409 } | 411 } |
OLD | NEW |