summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 18:34:46 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-11-02 18:34:46 +0000
commit8ff5c8c1c37d4804f8a1f1df1cfb0ca729a70bd0 (patch)
tree6a4b977c79d5078b7d3d3a2e7757ba2a067922f2 /ppapi
parent6f229e8807e2b1fe8d2a44e9f615a09b2c5a612a (diff)
downloadchromium_src-8ff5c8c1c37d4804f8a1f1df1cfb0ca729a70bd0.zip
chromium_src-8ff5c8c1c37d4804f8a1f1df1cfb0ca729a70bd0.tar.gz
chromium_src-8ff5c8c1c37d4804f8a1f1df1cfb0ca729a70bd0.tar.bz2
Comment out examples to see if this fixes the mac build.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64775 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi')
-rw-r--r--ppapi/ppapi.gyp186
1 files changed, 94 insertions, 92 deletions
diff --git a/ppapi/ppapi.gyp b/ppapi/ppapi.gyp
index 9be7a0e..2af075f 100644
--- a/ppapi/ppapi.gyp
+++ b/ppapi/ppapi.gyp
@@ -302,71 +302,72 @@
# }],
#],
},
- {
- 'target_name': 'ppapi_example_skeleton',
- 'type': 'none',
- 'dependencies': [
- 'ppapi_cpp',
- ],
- 'export_dependent_setting': ['ppapi_cpp'],
- 'direct_dependent_settings': {
- 'product_name': '>(_target_name)',
- 'conditions': [
- ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
- 'type': 'shared_library',
- 'cflags': ['-fvisibility=hidden'],
- # -gstabs, used in the official builds, causes an ICE. Simply remove
- # it.
- 'cflags!': ['-gstabs'],
- }],
- # TODO(ppapi authors): Make the examples build on Windows & Mac
- ['OS=="win"', {
- 'suppress_wildcard': 1,
- 'type': 'shared_library',
- }],
- ['OS=="mac"', {
- 'suppress_wildcard': 1,
- 'type': 'loadable_module',
- }],
- ],
- },
- },
- {
- 'target_name': 'ppapi_example_c_stub',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/stub/stub.c',
- ],
- },
- {
- 'target_name': 'ppapi_example_cc_stub',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/stub/stub.cc',
- ],
- },
- {
- 'target_name': 'ppapi_example_audio',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/audio/audio.cc',
- ],
- },
- {
- 'target_name': 'ppapi_example_file_chooser',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/file_chooser/file_chooser.cc',
- ],
- },
+# {
+# 'target_name': 'ppapi_example_skeleton',
+# 'type': 'none',
+# 'dependencies': [
+# 'ppapi_cpp',
+# ],
+# 'export_dependent_setting': ['ppapi_cpp'],
+# 'direct_dependent_settings': {
+# 'product_name': '>(_target_name)',
+# 'conditions': [
+# ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
+# 'type': 'shared_library',
+# 'cflags': ['-fvisibility=hidden'],
+# # -gstabs, used in the official builds, causes an ICE. Simply remove
+# # it.
+# 'cflags!': ['-gstabs'],
+# }],
+# # TODO(ppapi authors): Make the examples build on Windows & Mac
+# ['OS=="win"', {
+# 'suppress_wildcard': 1,
+# 'type': 'shared_library',
+# }],
+# ['OS=="mac"', {
+# 'suppress_wildcard': 1,
+# 'type': 'loadable_module',
+# }],
+# ],
+# },
+# },
+# {
+# 'target_name': 'ppapi_example_c_stub',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/stub/stub.c',
+# ],
+# },
+# {
+# 'target_name': 'ppapi_example_cc_stub',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/stub/stub.cc',
+# ],
+# },
+# {
+# 'target_name': 'ppapi_example_audio',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/audio/audio.cc',
+# ],
+# },
+# {
+# 'target_name': 'ppapi_example_file_chooser',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/file_chooser/file_chooser.cc',
+# ],
+# },
+
#TODO(ppapi authors): Fix the C headers so that they are C compatible.
# {
# 'target_name': 'ppapi_example_graphics_2d',
@@ -377,33 +378,34 @@
# 'examples/2d/graphics_2d_example.c',
# ],
# },
- {
- 'target_name': 'ppapi_example_paint_manager',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/2d/paint_manager_example.cc',
- ],
- },
- {
- 'target_name': 'ppapi_example_scroll',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/2d/scroll.cc',
- ],
- },
- {
- 'target_name': 'ppapi_example_simple_font',
- 'dependencies': [
- 'ppapi_example_skeleton',
- ],
- 'sources': [
- 'examples/font/simple_font.cc',
- ],
- },
+
+# {
+# 'target_name': 'ppapi_example_paint_manager',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/2d/paint_manager_example.cc',
+# ],
+# },
+# {
+# 'target_name': 'ppapi_example_scroll',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/2d/scroll.cc',
+# ],
+# },
+# {
+# 'target_name': 'ppapi_example_simple_font',
+# 'dependencies': [
+# 'ppapi_example_skeleton',
+# ],
+# 'sources': [
+# 'examples/font/simple_font.cc',
+# ],
+# },
{
'target_name': 'ppapi_tests',
'type': 'loadable_module',