Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 6882021: Wrap the p2p transport API in a compile time flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_cpp' 10 'ppapi_cpp'
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
217 'tests/test_graphics_2d.h', 217 'tests/test_graphics_2d.h',
218 'tests/test_image_data.cc', 218 'tests/test_image_data.cc',
219 'tests/test_image_data.h', 219 'tests/test_image_data.h',
220 'tests/test_paint_aggregator.cc', 220 'tests/test_paint_aggregator.cc',
221 'tests/test_paint_aggregator.h', 221 'tests/test_paint_aggregator.h',
222 'tests/test_post_message.cc', 222 'tests/test_post_message.cc',
223 'tests/test_post_message.h', 223 'tests/test_post_message.h',
224 'tests/test_scrollbar.cc', 224 'tests/test_scrollbar.cc',
225 'tests/test_scrollbar.h', 225 'tests/test_scrollbar.h',
226 'tests/test_struct_sizes.c', 226 'tests/test_struct_sizes.c',
227 'tests/test_transport.cc',
228 'tests/test_transport.h',
229 'tests/test_url_loader.cc', 227 'tests/test_url_loader.cc',
230 'tests/test_url_loader.h', 228 'tests/test_url_loader.h',
231 'tests/test_url_util.cc', 229 'tests/test_url_util.cc',
232 'tests/test_url_util.h', 230 'tests/test_url_util.h',
233 'tests/test_utils.cc', 231 'tests/test_utils.cc',
234 'tests/test_utils.h', 232 'tests/test_utils.h',
235 'tests/test_video_decoder.cc', 233 'tests/test_video_decoder.cc',
236 'tests/test_video_decoder.h', 234 'tests/test_video_decoder.h',
237 235
238 # Deprecated test cases. 236 # Deprecated test cases.
(...skipping 12 matching lines...) Expand all
251 '_CRT_NONSTDC_NO_WARNINGS', 249 '_CRT_NONSTDC_NO_WARNINGS',
252 '_CRT_NONSTDC_NO_DEPRECATE', 250 '_CRT_NONSTDC_NO_DEPRECATE',
253 '_SCL_SECURE_NO_DEPRECATE', 251 '_SCL_SECURE_NO_DEPRECATE',
254 ], 252 ],
255 }], 253 }],
256 ['OS=="mac"', { 254 ['OS=="mac"', {
257 'mac_bundle': 1, 255 'mac_bundle': 1,
258 'product_name': 'ppapi_tests', 256 'product_name': 'ppapi_tests',
259 'product_extension': 'plugin', 257 'product_extension': 'plugin',
260 }], 258 }],
259 ['p2p_apis==1', {
260 'sources': [
261 'tests/test_transport.cc',
262 'tests/test_transport.h',
263 ],
264 }],
261 ], 265 ],
262 # TODO(dmichael): Figure out what is wrong with the script on Windows and add 266 # TODO(dmichael): Figure out what is wrong with the script on Windows and add
263 # it as an automated action. 267 # it as an automated action.
264 # 'actions': [ 268 # 'actions': [
265 # { 269 # {
266 # 'action_name': 'generate_ppapi_include_tests', 270 # 'action_name': 'generate_ppapi_include_tests',
267 # 'inputs': [], 271 # 'inputs': [],
268 # 'outputs': [ 272 # 'outputs': [
269 # 'tests/test_c_includes.c', 273 # 'tests/test_c_includes.c',
270 # 'tests/test_cc_includes.cc', 274 # 'tests/test_cc_includes.cc',
(...skipping 27 matching lines...) Expand all
298 'proxy/plugin_dispatcher_unittest.cc', 302 'proxy/plugin_dispatcher_unittest.cc',
299 'proxy/plugin_resource_tracker_unittest.cc', 303 'proxy/plugin_resource_tracker_unittest.cc',
300 'proxy/plugin_var_tracker_unittest.cc', 304 'proxy/plugin_var_tracker_unittest.cc',
301 'proxy/ppapi_proxy_test.cc', 305 'proxy/ppapi_proxy_test.cc',
302 'proxy/ppapi_proxy_test.h', 306 'proxy/ppapi_proxy_test.h',
303 'proxy/serialized_var_unittest.cc', 307 'proxy/serialized_var_unittest.cc',
304 ], 308 ],
305 }, 309 },
306 ], 310 ],
307 } 311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698