diff options
author | 2016-07-25 17:13:45 -0700 | |
---|---|---|
committer | 2016-08-01 18:11:42 -0700 | |
commit | e05dc6d59c3be6ac42bdc7f415a7ea80a3ed1e18 (patch) | |
tree | 38888f50cc1f736e8d154d7ca692383a4bcd6377 /opengl/libs/Android.bp | |
parent | de4883bab707e2699350d561c5e6382d0bad34ba (diff) |
Start converting Android.mk to Android.bp
See build/soong/README.md for more information.
Change-Id: Ifbe9b0072a63b4467c72b3a52148a606e5365f78
Diffstat (limited to 'opengl/libs/Android.bp')
-rw-r--r-- | opengl/libs/Android.bp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/opengl/libs/Android.bp b/opengl/libs/Android.bp new file mode 100644 index 0000000000..813fd99a36 --- /dev/null +++ b/opengl/libs/Android.bp @@ -0,0 +1,21 @@ +// Build the ETC1 library +cc_library { + name: "libETC1", + srcs: ["ETC1/etc1.cpp"], + + target: { + android: { + static: { + enabled: false, + }, + }, + host: { + shared: { + enabled: false, + }, + }, + windows: { + enabled: true, + }, + }, +} |