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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'proxy/mock_resource.h', | 188 'proxy/mock_resource.h', |
189 'proxy/plugin_dispatcher_unittest.cc', | 189 'proxy/plugin_dispatcher_unittest.cc', |
190 'proxy/plugin_resource_tracker_unittest.cc', | 190 'proxy/plugin_resource_tracker_unittest.cc', |
191 'proxy/plugin_var_tracker_unittest.cc', | 191 'proxy/plugin_var_tracker_unittest.cc', |
192 'proxy/ppapi_proxy_test.cc', | 192 'proxy/ppapi_proxy_test.cc', |
193 'proxy/ppapi_proxy_test.h', | 193 'proxy/ppapi_proxy_test.h', |
194 'proxy/ppb_var_unittest.cc', | 194 'proxy/ppb_var_unittest.cc', |
195 'proxy/ppp_instance_proxy_test.cc', | 195 'proxy/ppp_instance_proxy_test.cc', |
196 'proxy/ppp_messaging_proxy_test.cc', | 196 'proxy/ppp_messaging_proxy_test.cc', |
197 'proxy/serialized_var_unittest.cc', | 197 'proxy/serialized_var_unittest.cc', |
| 198 'shared_impl/resource_tracker_unittest.cc', |
198 ], | 199 ], |
199 }, | 200 }, |
200 ], | 201 ], |
201 | 202 |
202 'conditions': [ | 203 'conditions': [ |
203 # NOTE: the PPAPI examples fail to build on mac & windows. | 204 # NOTE: the PPAPI examples fail to build on mac & windows. |
204 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. | 205 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. |
205 ['OS!="mac"', { | 206 ['OS!="mac"', { |
206 'targets': [ | 207 'targets': [ |
207 { | 208 { |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 ], | 341 ], |
341 'sources': [ | 342 'sources': [ |
342 'examples/gles2/gles2.cc', | 343 'examples/gles2/gles2.cc', |
343 'examples/gles2/testdata.h', | 344 'examples/gles2/testdata.h', |
344 ], | 345 ], |
345 }, | 346 }, |
346 ], | 347 ], |
347 }] | 348 }] |
348 ] | 349 ] |
349 } | 350 } |
OLD | NEW |