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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 'tests/test_video_decoder.cc', | 132 'tests/test_video_decoder.cc', |
133 'tests/test_video_decoder.h', | 133 'tests/test_video_decoder.h', |
134 | 134 |
135 # Deprecated test cases. | 135 # Deprecated test cases. |
136 'tests/test_instance_deprecated.cc', | 136 'tests/test_instance_deprecated.cc', |
137 'tests/test_instance_deprecated.h', | 137 'tests/test_instance_deprecated.h', |
138 'tests/test_var_deprecated.cc', | 138 'tests/test_var_deprecated.cc', |
139 'tests/test_var_deprecated.h', | 139 'tests/test_var_deprecated.h', |
140 ], | 140 ], |
141 'dependencies': [ | 141 'dependencies': [ |
142 'ppapi.gyp:ppapi_cpp' | 142 'ppapi.gyp:ppapi_cpp', |
| 143 'ppapi_internal.gyp:ppapi_shared', |
143 ], | 144 ], |
144 'run_as': { | 145 'run_as': { |
145 'action': [ | 146 'action': [ |
146 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', | 147 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)chrome<(EXECUTABLE_SUFFIX)', |
147 '--enable-pepper-testing', | 148 '--enable-pepper-testing', |
148 '--enable-accelerated-plugins', | 149 '--enable-accelerated-plugins', |
149 '--register-pepper-plugins=$(TargetPath);application/x-ppapi-tests', | 150 '--register-pepper-plugins=$(TargetPath);application/x-ppapi-tests', |
150 'file://$(ProjectDir)/tests/test_case.html?testcase=', | 151 'file://$(ProjectDir)/tests/test_case.html?testcase=', |
151 ], | 152 ], |
152 }, | 153 }, |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 'proxy/plugin_resource_tracker_unittest.cc', | 214 'proxy/plugin_resource_tracker_unittest.cc', |
214 'proxy/plugin_var_tracker_unittest.cc', | 215 'proxy/plugin_var_tracker_unittest.cc', |
215 'proxy/ppapi_proxy_test.cc', | 216 'proxy/ppapi_proxy_test.cc', |
216 'proxy/ppapi_proxy_test.h', | 217 'proxy/ppapi_proxy_test.h', |
217 'proxy/ppb_var_unittest.cc', | 218 'proxy/ppb_var_unittest.cc', |
218 'proxy/ppp_instance_private_proxy_unittest.cc', | 219 'proxy/ppp_instance_private_proxy_unittest.cc', |
219 'proxy/ppp_instance_proxy_unittest.cc', | 220 'proxy/ppp_instance_proxy_unittest.cc', |
220 'proxy/ppp_messaging_proxy_unittest.cc', | 221 'proxy/ppp_messaging_proxy_unittest.cc', |
221 'proxy/serialized_var_unittest.cc', | 222 'proxy/serialized_var_unittest.cc', |
222 'shared_impl/resource_tracker_unittest.cc', | 223 'shared_impl/resource_tracker_unittest.cc', |
| 224 'shared_impl/test_globals.cc', |
| 225 'shared_impl/test_globals.h', |
223 ], | 226 ], |
224 }, | 227 }, |
225 { | 228 { |
226 'target_name': 'ppapi_example_skeleton', | 229 'target_name': 'ppapi_example_skeleton', |
227 'suppress_wildcard': 1, | 230 'suppress_wildcard': 1, |
228 'type': 'none', | 231 'type': 'none', |
229 'direct_dependent_settings': { | 232 'direct_dependent_settings': { |
230 'product_name': '>(_target_name)', | 233 'product_name': '>(_target_name)', |
231 'conditions': [ | 234 'conditions': [ |
232 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" or OS
=="android"', { | 235 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" or OS
=="android"', { |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 'lib/gl/include', | 403 'lib/gl/include', |
401 ], | 404 ], |
402 'sources': [ | 405 'sources': [ |
403 'examples/video_capture/video_capture.cc', | 406 'examples/video_capture/video_capture.cc', |
404 ], | 407 ], |
405 }, | 408 }, |
406 ], | 409 ], |
407 }] | 410 }] |
408 ] | 411 ] |
409 } | 412 } |
OLD | NEW |