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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 'proxy/run_all_unittests.cc', | 178 'proxy/run_all_unittests.cc', |
179 | 179 |
180 'proxy/host_dispatcher_unittest.cc', | 180 'proxy/host_dispatcher_unittest.cc', |
181 'proxy/mock_resource.cc', | 181 'proxy/mock_resource.cc', |
182 'proxy/mock_resource.h', | 182 'proxy/mock_resource.h', |
183 'proxy/plugin_dispatcher_unittest.cc', | 183 'proxy/plugin_dispatcher_unittest.cc', |
184 'proxy/plugin_resource_tracker_unittest.cc', | 184 'proxy/plugin_resource_tracker_unittest.cc', |
185 'proxy/plugin_var_tracker_unittest.cc', | 185 'proxy/plugin_var_tracker_unittest.cc', |
186 'proxy/ppapi_proxy_test.cc', | 186 'proxy/ppapi_proxy_test.cc', |
187 'proxy/ppapi_proxy_test.h', | 187 'proxy/ppapi_proxy_test.h', |
| 188 'proxy/ppp_instance_proxy_test.cc', |
188 'proxy/serialized_var_unittest.cc', | 189 'proxy/serialized_var_unittest.cc', |
189 ], | 190 ], |
190 }, | 191 }, |
191 ], | 192 ], |
192 | 193 |
193 'conditions': [ | 194 'conditions': [ |
194 # NOTE: the PPAPI examples fail to build on mac & windows. | 195 # NOTE: the PPAPI examples fail to build on mac & windows. |
195 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. | 196 # http://code.google.com/p/chromium/issues/detail?id=54005 tracks mac. |
196 # TODO(ppapi authors): Make the examples build on Windows as well. In | 197 # TODO(ppapi authors): Make the examples build on Windows as well. In |
197 # particular previous attempts have failed because the Win(clobber) and | 198 # particular previous attempts have failed because the Win(clobber) and |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
325 ], | 326 ], |
326 'sources': [ | 327 'sources': [ |
327 'examples/gles2/gles2.cc', | 328 'examples/gles2/gles2.cc', |
328 'examples/gles2/testdata.h', | 329 'examples/gles2/testdata.h', |
329 ], | 330 ], |
330 }, | 331 }, |
331 ], | 332 ], |
332 }] | 333 }] |
333 ] | 334 ] |
334 } | 335 } |
OLD | NEW |