OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'win'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'win'], |
3 'SEARCH' : [ | 3 'SEARCH' : [ |
4 '.', | 4 '../../../../ppapi/lib/gl/gles2', |
5 '../../../../ppapi/lib/gl/gles2' | 5 '../../../../ppapi/lib/gl/include/EGL', |
| 6 '../../../../ppapi/lib/gl/include/GLES2', |
| 7 '../../../../ppapi/lib/gl/include/KHR' |
6 ], | 8 ], |
7 'TARGETS': [ | 9 'TARGETS': [ |
8 { | 10 { |
9 'NAME' : 'ppapi_gles2', | 11 'NAME' : 'ppapi_gles2', |
10 'TYPE' : 'lib', | 12 'TYPE' : 'lib', |
11 'SOURCES' : [ | 13 'SOURCES' : [ |
12 'gl2ext_ppapi.c', | 14 'gl2ext_ppapi.c', |
13 'gles2.c' | 15 'gles2.c' |
14 ], | 16 ], |
15 } | 17 } |
16 ], | 18 ], |
| 19 'HEADERS': [ |
| 20 # ppapi/lib/gl/include/KHR |
| 21 { |
| 22 'FILES': [ |
| 23 'khrplatform.h' |
| 24 ], |
| 25 'DEST': 'include/KHR', |
| 26 }, |
| 27 |
| 28 # ppapi/lib/gl/include/GLES2 |
| 29 { |
| 30 'FILES': [ |
| 31 'gl2.h', |
| 32 'gl2ext.h', |
| 33 'gl2platform.h', |
| 34 ], |
| 35 'DEST': 'include/GLES2', |
| 36 }, |
| 37 |
| 38 # ppapi/lib/gl/include/EGL |
| 39 { |
| 40 'FILES': [ |
| 41 'egl.h', |
| 42 'eglext.h', |
| 43 'eglplatform.h', |
| 44 ], |
| 45 'DEST': 'include/EGL', |
| 46 }, |
| 47 |
| 48 # ppapi/lib/gl/gles2 |
| 49 { |
| 50 'FILES': [ 'gl2ext_ppapi.h' ], |
| 51 'DEST': 'include/ppapi/gles2', |
| 52 }, |
| 53 |
| 54 # Create a duplicate copy of this header |
| 55 # TODO(sbc), remove this copy once we find a way to build gl2ext_ppapi.c. |
| 56 { |
| 57 'FILES': [ 'gl2ext_ppapi.h' ], |
| 58 'DEST': 'include/ppapi/lib/gl/gles2', |
| 59 }, |
| 60 ], |
17 'DEST': 'src', | 61 'DEST': 'src', |
18 'NAME': 'ppapi_gles2', | 62 'NAME': 'ppapi_gles2', |
19 } | 63 } |
20 | 64 |
OLD | NEW |