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

Side by Side Diff: ppapi/ppapi_tests.gypi

Issue 6981001: Make the Pepper proxy support in-process font rendering. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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
« no previous file with comments | « ppapi/ppapi_shared_proxy.gypi ('k') | ppapi/proxy/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.gyp:ppapi_cpp'
11 ], 11 ],
12 'xcode_settings': { 12 'xcode_settings': {
13 'INFOPLIST_FILE': 'example/Info.plist', 13 'INFOPLIST_FILE': 'example/Info.plist',
14 }, 14 },
15 'sources': [ 15 'sources': [
16 'example/example.cc', 16 'example/example.cc',
17 ], 17 ],
18 'conditions': [ 18 'conditions': [
19 ['OS=="win"', { 19 ['OS=="win"', {
20 'product_name': 'ppapi_example', 20 'product_name': 'ppapi_example',
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 # 'xcode_settings' : { 57 # 'xcode_settings' : {
58 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san dbox file://${SRCROOT}/test_page.html' 58 # 'ARGUMENTS' : '--renderer-startup-dialog --internal-pepper --no-san dbox file://${SRCROOT}/test_page.html'
59 # }, 59 # },
60 # }], 60 # }],
61 #], 61 #],
62 }, 62 },
63 # { 63 # {
64 # 'target_name': 'ppapi_example_skeleton', 64 # 'target_name': 'ppapi_example_skeleton',
65 # 'type': 'none', 65 # 'type': 'none',
66 # 'dependencies': [ 66 # 'dependencies': [
67 # 'ppapi_cpp', 67 # 'ppapi.gyp:ppapi_cpp',
68 # ], 68 # ],
69 # 'export_dependent_setting': ['ppapi_cpp'], 69 # 'export_dependent_setting': ['ppapi_cpp'],
70 # 'direct_dependent_settings': { 70 # 'direct_dependent_settings': {
71 # 'product_name': '>(_target_name)', 71 # 'product_name': '>(_target_name)',
72 # 'conditions': [ 72 # 'conditions': [
73 # ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { 73 # ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
74 # 'type': 'shared_library', 74 # 'type': 'shared_library',
75 # 'cflags': ['-fvisibility=hidden'], 75 # 'cflags': ['-fvisibility=hidden'],
76 # # -gstabs, used in the official builds, causes an ICE. Simply remov e 76 # # -gstabs, used in the official builds, causes an ICE. Simply remov e
77 # # it. 77 # # it.
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'tests/test_video_decoder.cc', 235 'tests/test_video_decoder.cc',
236 'tests/test_video_decoder.h', 236 'tests/test_video_decoder.h',
237 237
238 # Deprecated test cases. 238 # Deprecated test cases.
239 'tests/test_instance_deprecated.cc', 239 'tests/test_instance_deprecated.cc',
240 'tests/test_instance_deprecated.h', 240 'tests/test_instance_deprecated.h',
241 'tests/test_var_deprecated.cc', 241 'tests/test_var_deprecated.cc',
242 'tests/test_var_deprecated.h', 242 'tests/test_var_deprecated.h',
243 ], 243 ],
244 'dependencies': [ 244 'dependencies': [
245 'ppapi_cpp' 245 'ppapi.gyp:ppapi_cpp'
246 ], 246 ],
247 'conditions': [ 247 'conditions': [
248 ['OS=="win"', { 248 ['OS=="win"', {
249 'defines': [ 249 'defines': [
250 '_CRT_SECURE_NO_DEPRECATE', 250 '_CRT_SECURE_NO_DEPRECATE',
251 '_CRT_NONSTDC_NO_WARNINGS', 251 '_CRT_NONSTDC_NO_WARNINGS',
252 '_CRT_NONSTDC_NO_DEPRECATE', 252 '_CRT_NONSTDC_NO_DEPRECATE',
253 '_SCL_SECURE_NO_DEPRECATE', 253 '_SCL_SECURE_NO_DEPRECATE',
254 ], 254 ],
255 }], 255 }],
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 'variables': { 287 'variables': {
288 'chromium_code': 1, 288 'chromium_code': 1,
289 }, 289 },
290 'msvs_guid': 'C2BD9365-5BD7-44A7-854E-A49E606BE8E4', 290 'msvs_guid': 'C2BD9365-5BD7-44A7-854E-A49E606BE8E4',
291 'dependencies': [ 291 'dependencies': [
292 'ppapi_proxy', 292 'ppapi_proxy',
293 '../base/base.gyp:test_support_base', 293 '../base/base.gyp:test_support_base',
294 '../ipc/ipc.gyp:test_support_ipc', 294 '../ipc/ipc.gyp:test_support_ipc',
295 '../testing/gmock.gyp:gmock', 295 '../testing/gmock.gyp:gmock',
296 '../testing/gtest.gyp:gtest', 296 '../testing/gtest.gyp:gtest',
297 '../ui/gfx/surface/surface.gyp:surface',
297 ], 298 ],
298 'sources': [ 299 'sources': [
299 'proxy/run_all_unittests.cc', 300 'proxy/run_all_unittests.cc',
300 301
301 'proxy/host_dispatcher_unittest.cc', 302 'proxy/host_dispatcher_unittest.cc',
302 'proxy/mock_resource.cc', 303 'proxy/mock_resource.cc',
303 'proxy/mock_resource.h', 304 'proxy/mock_resource.h',
304 'proxy/plugin_dispatcher_unittest.cc', 305 'proxy/plugin_dispatcher_unittest.cc',
305 'proxy/plugin_resource_tracker_unittest.cc', 306 'proxy/plugin_resource_tracker_unittest.cc',
306 'proxy/plugin_var_tracker_unittest.cc', 307 'proxy/plugin_var_tracker_unittest.cc',
307 'proxy/ppapi_proxy_test.cc', 308 'proxy/ppapi_proxy_test.cc',
308 'proxy/ppapi_proxy_test.h', 309 'proxy/ppapi_proxy_test.h',
309 'proxy/serialized_var_unittest.cc', 310 'proxy/serialized_var_unittest.cc',
310 ], 311 ],
311 }, 312 },
312 ], 313 ],
313 } 314 }
OLDNEW
« no previous file with comments | « ppapi/ppapi_shared_proxy.gypi ('k') | ppapi/proxy/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698