OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 # 'tests/test_c_includes.c', | 111 # 'tests/test_c_includes.c', |
112 # 'tests/test_cc_includes.cc', | 112 # 'tests/test_cc_includes.cc', |
113 # ], | 113 # ], |
114 # 'action': [ | 114 # 'action': [ |
115 # '<!@(python generate_ppapi_include_tests.py)', | 115 # '<!@(python generate_ppapi_include_tests.py)', |
116 # ], | 116 # ], |
117 # }, | 117 # }, |
118 # ], | 118 # ], |
119 }, | 119 }, |
120 { | 120 { |
| 121 'target_name': 'ppapi_unittest_shared', |
| 122 'type': 'static_library', |
| 123 'dependencies': [ |
| 124 'ppapi_proxy', |
| 125 'ppapi_shared', |
| 126 '../base/base.gyp:test_support_base', |
| 127 '../ipc/ipc.gyp:ipc', |
| 128 '../ipc/ipc.gyp:test_support_ipc', |
| 129 '../testing/gmock.gyp:gmock', |
| 130 '../testing/gtest.gyp:gtest', |
| 131 ], |
| 132 'sources': [ |
| 133 'proxy/ppapi_proxy_test.cc', |
| 134 'proxy/ppapi_proxy_test.h', |
| 135 'shared_impl/test_globals.cc', |
| 136 'shared_impl/test_globals.h', |
| 137 ], |
| 138 }, |
| 139 |
| 140 { |
| 141 'target_name': 'ppapi_perftests', |
| 142 'type': 'executable', |
| 143 'variables': { |
| 144 'chromium_code': 1, |
| 145 }, |
| 146 'dependencies': [ |
| 147 'ppapi_proxy', |
| 148 'ppapi_shared', |
| 149 'ppapi_unittest_shared', |
| 150 '../base/base.gyp:test_support_base', |
| 151 '../testing/gtest.gyp:gtest', |
| 152 ], |
| 153 'sources': [ |
| 154 'proxy/ppapi_perftests.cc', |
| 155 'proxy/ppp_messaging_proxy_perftest.cc', |
| 156 ], |
| 157 }, |
| 158 { |
121 'target_name': 'ppapi_unittests', | 159 'target_name': 'ppapi_unittests', |
122 'type': 'executable', | 160 'type': 'executable', |
123 'variables': { | 161 'variables': { |
124 'chromium_code': 1, | 162 'chromium_code': 1, |
125 }, | 163 }, |
126 'dependencies': [ | 164 'dependencies': [ |
127 'ppapi_proxy', | 165 'ppapi_proxy', |
128 'ppapi_shared', | 166 'ppapi_shared', |
| 167 'ppapi_unittest_shared', |
129 '../base/base.gyp:test_support_base', | 168 '../base/base.gyp:test_support_base', |
130 '../gpu/gpu.gyp:gpu_ipc', | 169 '../gpu/gpu.gyp:gpu_ipc', |
131 '../ipc/ipc.gyp:ipc', | 170 '../ipc/ipc.gyp:ipc', |
132 '../ipc/ipc.gyp:test_support_ipc', | 171 '../ipc/ipc.gyp:test_support_ipc', |
133 '../testing/gmock.gyp:gmock', | 172 '../testing/gmock.gyp:gmock', |
134 '../testing/gtest.gyp:gtest', | 173 '../testing/gtest.gyp:gtest', |
135 '../ui/gfx/surface/surface.gyp:surface', | 174 '../ui/gfx/surface/surface.gyp:surface', |
136 ], | 175 ], |
137 'sources': [ | 176 'sources': [ |
138 'proxy/run_all_unittests.cc', | 177 'proxy/run_all_unittests.cc', |
139 | 178 |
140 'proxy/mock_resource.cc', | 179 'proxy/mock_resource.cc', |
141 'proxy/mock_resource.h', | 180 'proxy/mock_resource.h', |
142 'proxy/plugin_dispatcher_unittest.cc', | 181 'proxy/plugin_dispatcher_unittest.cc', |
143 'proxy/plugin_resource_tracker_unittest.cc', | 182 'proxy/plugin_resource_tracker_unittest.cc', |
144 'proxy/plugin_var_tracker_unittest.cc', | 183 'proxy/plugin_var_tracker_unittest.cc', |
145 'proxy/ppapi_proxy_test.cc', | |
146 'proxy/ppapi_proxy_test.h', | |
147 'proxy/ppb_var_unittest.cc', | 184 'proxy/ppb_var_unittest.cc', |
148 'proxy/ppp_instance_private_proxy_unittest.cc', | 185 'proxy/ppp_instance_private_proxy_unittest.cc', |
149 'proxy/ppp_instance_proxy_unittest.cc', | 186 'proxy/ppp_instance_proxy_unittest.cc', |
150 'proxy/ppp_messaging_proxy_unittest.cc', | 187 'proxy/ppp_messaging_proxy_unittest.cc', |
151 'proxy/serialized_var_unittest.cc', | 188 'proxy/serialized_var_unittest.cc', |
152 'shared_impl/resource_tracker_unittest.cc', | 189 'shared_impl/resource_tracker_unittest.cc', |
153 'shared_impl/test_globals.cc', | |
154 'shared_impl/test_globals.h', | |
155 'shared_impl/tracked_callback_unittest.cc', | 190 'shared_impl/tracked_callback_unittest.cc', |
156 'shared_impl/var_tracker_unittest.cc', | 191 'shared_impl/var_tracker_unittest.cc', |
157 ], | 192 ], |
158 }, | 193 }, |
159 { | 194 { |
160 'target_name': 'ppapi_example_skeleton', | 195 'target_name': 'ppapi_example_skeleton', |
161 'suppress_wildcard': 1, | 196 'suppress_wildcard': 1, |
162 'type': 'none', | 197 'type': 'none', |
163 'direct_dependent_settings': { | 198 'direct_dependent_settings': { |
164 'product_name': '>(_target_name)', | 199 'product_name': '>(_target_name)', |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 ], | 391 ], |
357 'include_dirs': [ | 392 'include_dirs': [ |
358 'lib/gl/include', | 393 'lib/gl/include', |
359 ], | 394 ], |
360 'sources': [ | 395 'sources': [ |
361 'examples/video_capture/video_capture.cc', | 396 'examples/video_capture/video_capture.cc', |
362 ], | 397 ], |
363 }, | 398 }, |
364 ], | 399 ], |
365 } | 400 } |
OLD | NEW |