diff options
| author | 2016-10-20 22:12:39 +0000 | |
|---|---|---|
| committer | 2016-10-20 22:12:40 +0000 | |
| commit | 8c9cd8a2158895d4bec9f7e6f980ef8f040cbae8 (patch) | |
| tree | c3d03da9612fe2333dbb82eabe644a1056656537 | |
| parent | 2e5c7798e1ac32ef60307bba091be7e239907616 (diff) | |
| parent | 96b5509dcdfeaa7bf529ea720fdf9022e07ed5a5 (diff) | |
Merge "Add licenses to ndk_headers."
| -rw-r--r-- | Android.bp | 1 | ||||
| -rw-r--r-- | opengl/Android.bp | 5 | ||||
| -rw-r--r-- | opengl/include/EGL/NOTICE | 20 | ||||
| -rw-r--r-- | opengl/include/GLES/NOTICE | 2 | ||||
| -rw-r--r-- | opengl/include/GLES2/NOTICE | 20 | ||||
| -rw-r--r-- | opengl/include/GLES3/NOTICE | 20 | ||||
| -rw-r--r-- | opengl/include/KHR/NOTICE | 20 | ||||
| -rw-r--r-- | vulkan/Android.bp | 1 | ||||
| -rw-r--r-- | vulkan/include/vulkan/NOTICE | 13 |
9 files changed, 102 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp index 086a2c68c9..cd05b21dde 100644 --- a/Android.bp +++ b/Android.bp @@ -3,6 +3,7 @@ ndk_headers { from: "include/android", to: "android", srcs: ["include/android/**/*.h"], + license: "NOTICE", } subdirs = [ diff --git a/opengl/Android.bp b/opengl/Android.bp index 164be2054a..c520bda140 100644 --- a/opengl/Android.bp +++ b/opengl/Android.bp @@ -17,6 +17,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/EGL/**/*.h"], + license: "include/EGL/NOTICE", } ndk_headers { @@ -24,6 +25,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/GLES/**/*.h"], + license: "include/GLES/NOTICE", } ndk_headers { @@ -31,6 +33,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/GLES2/**/*.h"], + license: "include/GLES2/NOTICE", } ndk_headers { @@ -38,6 +41,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/GLES3/**/*.h"], + license: "include/GLES3/NOTICE", } ndk_headers { @@ -45,6 +49,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/KHR/**/*.h"], + license: "include/KHR/NOTICE", } subdirs = [ diff --git a/opengl/include/EGL/NOTICE b/opengl/include/EGL/NOTICE new file mode 100644 index 0000000000..55f5efaed4 --- /dev/null +++ b/opengl/include/EGL/NOTICE @@ -0,0 +1,20 @@ +Copyright (c) 2007-2009 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. diff --git a/opengl/include/GLES/NOTICE b/opengl/include/GLES/NOTICE new file mode 100644 index 0000000000..4dc66144a0 --- /dev/null +++ b/opengl/include/GLES/NOTICE @@ -0,0 +1,2 @@ +This document is licensed under the SGI Free Software B License Version 2.0. +For details, see http://oss.sgi.com/projects/FreeB/ . diff --git a/opengl/include/GLES2/NOTICE b/opengl/include/GLES2/NOTICE new file mode 100644 index 0000000000..7a943739a4 --- /dev/null +++ b/opengl/include/GLES2/NOTICE @@ -0,0 +1,20 @@ +Copyright (c) 2013-2015 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. diff --git a/opengl/include/GLES3/NOTICE b/opengl/include/GLES3/NOTICE new file mode 100644 index 0000000000..7a943739a4 --- /dev/null +++ b/opengl/include/GLES3/NOTICE @@ -0,0 +1,20 @@ +Copyright (c) 2013-2015 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. diff --git a/opengl/include/KHR/NOTICE b/opengl/include/KHR/NOTICE new file mode 100644 index 0000000000..36796e89d1 --- /dev/null +++ b/opengl/include/KHR/NOTICE @@ -0,0 +1,20 @@ +Copyright (c) 2008-2009 The Khronos Group Inc. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of this software and/or associated documentation files (the +"Materials"), to deal in the Materials without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Materials, and to +permit persons to whom the Materials are furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be included +in all copies or substantial portions of the Materials. + +THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. diff --git a/vulkan/Android.bp b/vulkan/Android.bp index 97d99d0950..d97cf5e816 100644 --- a/vulkan/Android.bp +++ b/vulkan/Android.bp @@ -17,6 +17,7 @@ ndk_headers { from: "include", to: "", srcs: ["include/vulkan/**/*.h"], + license: "include/vulkan/NOTICE", } subdirs = [ diff --git a/vulkan/include/vulkan/NOTICE b/vulkan/include/vulkan/NOTICE new file mode 100644 index 0000000000..c958fba80b --- /dev/null +++ b/vulkan/include/vulkan/NOTICE @@ -0,0 +1,13 @@ +Copyright (c) 2015-2016 The Khronos Group Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. |