Dan Willemsen | 59e086f | 2016-07-25 17:13:45 -0700 | [diff] [blame] | 1 | // Build the ETC1 library |
2 | cc_library { | ||||
3 | name: "libETC1", | ||||
4 | srcs: ["ETC1/etc1.cpp"], | ||||
5 | host_supported: true, | ||||
6 | |||||
7 | target: { | ||||
8 | android: { | ||||
9 | static: { | ||||
10 | enabled: false, | ||||
11 | }, | ||||
12 | }, | ||||
13 | host: { | ||||
14 | shared: { | ||||
15 | enabled: false, | ||||
16 | }, | ||||
17 | }, | ||||
18 | windows: { | ||||
19 | enabled: true, | ||||
20 | }, | ||||
21 | }, | ||||
22 | } | ||||
Dan Albert | 49fbff4 | 2016-10-03 12:36:00 -0700 | [diff] [blame^] | 23 | |
24 | // The headers module is in frameworks/native/opengl/Android.bp. | ||||
25 | ndk_library { | ||||
26 | name: "libEGL.ndk", | ||||
27 | symbol_file: "libEGL.map.txt", | ||||
28 | first_version: "9", | ||||
29 | } |