Commit cf2560dd by alokp@chromium.org

Always build libEGL and libGLESv2 as shared libraries. They do not work as…

Always build libEGL and libGLESv2 as shared libraries. They do not work as static libraries so there is no point in parametrizing the library type. Review URL: http://codereview.appspot.com/810045 git-svn-id: https://angleproject.googlecode.com/svn/trunk@104 736b8ea6-26fd-11df-bfd4-992fa37f6226
parent 0270ef14
...@@ -138,7 +138,7 @@ ...@@ -138,7 +138,7 @@
}, },
{ {
'target_name': 'libGLESv2', 'target_name': 'libGLESv2',
'type': '<(library)', 'type': 'shared_library',
'dependencies': ['translator_hlsl'], 'dependencies': ['translator_hlsl'],
'include_dirs': [ 'include_dirs': [
'libGLESv2', 'libGLESv2',
...@@ -188,7 +188,7 @@ ...@@ -188,7 +188,7 @@
}, },
{ {
'target_name': 'libEGL', 'target_name': 'libEGL',
'type': '<(library)', 'type': 'shared_library',
'dependencies': ['libGLESv2'], 'dependencies': ['libGLESv2'],
'include_dirs': [ 'include_dirs': [
'libEGL', 'libEGL',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment