diff --git a/MoreTeapots/assets/Shaders/ShaderPlain.fsh b/MoreTeapots/assets/Shaders/ShaderPlain.fsh index 9f97be840..f347adb73 100644 --- a/MoreTeapots/assets/Shaders/ShaderPlain.fsh +++ b/MoreTeapots/assets/Shaders/ShaderPlain.fsh @@ -1,4 +1,18 @@ // +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// // ShaderPlain.fsh // diff --git a/MoreTeapots/assets/Shaders/ShaderPlainES3.fsh b/MoreTeapots/assets/Shaders/ShaderPlainES3.fsh index 440c90d0b..1ddc797c4 100644 --- a/MoreTeapots/assets/Shaders/ShaderPlainES3.fsh +++ b/MoreTeapots/assets/Shaders/ShaderPlainES3.fsh @@ -1,3 +1,19 @@ +// +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// + #version 300 es precision mediump float; diff --git a/MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh b/MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh index 725b44fd8..372a5b7c5 100644 --- a/MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh +++ b/MoreTeapots/assets/Shaders/VS_ShaderPlain.vsh @@ -1,4 +1,18 @@ // +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// // ShaderPlain.vsh // diff --git a/MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh b/MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh index 06197c74c..113c08d68 100644 --- a/MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh +++ b/MoreTeapots/assets/Shaders/VS_ShaderPlainES3.vsh @@ -1,3 +1,18 @@ +// +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// #version 300 es precision mediump float; diff --git a/Teapot/assets/Shaders/ShaderPlain.fsh b/Teapot/assets/Shaders/ShaderPlain.fsh index 693e4fcc2..558a4baac 100644 --- a/Teapot/assets/Shaders/ShaderPlain.fsh +++ b/Teapot/assets/Shaders/ShaderPlain.fsh @@ -1,4 +1,18 @@ // +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// // ShaderPlain.fsh // diff --git a/Teapot/assets/Shaders/VS_ShaderPlain.vsh b/Teapot/assets/Shaders/VS_ShaderPlain.vsh index f87a3c082..6b4b69d2e 100644 --- a/Teapot/assets/Shaders/VS_ShaderPlain.vsh +++ b/Teapot/assets/Shaders/VS_ShaderPlain.vsh @@ -1,4 +1,18 @@ // +// Copyright (C) 2015 The Android Open Source Project +// +// 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. +// // ShaderPlain.vsh // diff --git a/gles3jni/jni/gl3stub.h b/gles3jni/jni/gl3stub.h index 5a7b719ef..de35cc988 100644 --- a/gles3jni/jni/gl3stub.h +++ b/gles3jni/jni/gl3stub.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #ifndef __gl3_h_ #define __gl3_h_ diff --git a/hello-jni/tests/src/com/example/hellojni/HelloJniTest.java b/hello-jni/tests/src/com/example/hellojni/HelloJniTest.java index 8ba6117fd..c98f52a77 100644 --- a/hello-jni/tests/src/com/example/hellojni/HelloJniTest.java +++ b/hello-jni/tests/src/com/example/hellojni/HelloJniTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ package com.example.hellojni; import android.test.ActivityInstrumentationTestCase; diff --git a/hello-neon/src/com/example/neon/HelloNeon.java b/hello-neon/src/com/example/neon/HelloNeon.java index b2f5e88db..e06ae5c29 100644 --- a/hello-neon/src/com/example/neon/HelloNeon.java +++ b/hello-neon/src/com/example/neon/HelloNeon.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ package com.example.neon; import android.app.Activity; diff --git a/module-exports/jni/bar/bar.c b/module-exports/jni/bar/bar.c index 155241dcc..7d7529bd2 100644 --- a/module-exports/jni/bar/bar.c +++ b/module-exports/jni/bar/bar.c @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #include "bar.h" #include "foo.h" diff --git a/module-exports/jni/bar/bar.h b/module-exports/jni/bar/bar.h index a01f5f72d..b3fa86c2c 100644 --- a/module-exports/jni/bar/bar.h +++ b/module-exports/jni/bar/bar.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #ifndef BAR_H #define BAR_H diff --git a/module-exports/jni/foo/foo.c b/module-exports/jni/foo/foo.c index 71e85953d..b5331cb88 100644 --- a/module-exports/jni/foo/foo.c +++ b/module-exports/jni/foo/foo.c @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #include "foo.h" #include diff --git a/module-exports/jni/foo/foo.h b/module-exports/jni/foo/foo.h index e061d1065..e7e3b19a0 100644 --- a/module-exports/jni/foo/foo.h +++ b/module-exports/jni/foo/foo.h @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #ifndef FOO_H #define FOO_H diff --git a/module-exports/jni/zoo/zoo.c b/module-exports/jni/zoo/zoo.c index 24e720909..8839d6ee5 100644 --- a/module-exports/jni/zoo/zoo.c +++ b/module-exports/jni/zoo/zoo.c @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #include "bar.h" int something(void) diff --git a/test-libstdc++/jni/test-libstl.cpp b/test-libstdc++/jni/test-libstl.cpp index f9cedb0e6..d8a6ad9ef 100644 --- a/test-libstdc++/jni/test-libstl.cpp +++ b/test-libstdc++/jni/test-libstl.cpp @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ #include #include @@ -5,4 +20,3 @@ int main(void) { return 0; } - diff --git a/two-libs/tests/src/com/example/twolibs/TwoLibsTest.java b/two-libs/tests/src/com/example/twolibs/TwoLibsTest.java index 6e910be22..0c878d74b 100644 --- a/two-libs/tests/src/com/example/twolibs/TwoLibsTest.java +++ b/two-libs/tests/src/com/example/twolibs/TwoLibsTest.java @@ -1,3 +1,18 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * 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. + */ package com.example.twolibs; import android.test.ActivityInstrumentationTestCase;