Dan Bornstein | 18fbac3 | 2009-04-09 16:31:46 -0700 | [diff] [blame] | 1 | This directory contains the Dalvik virtual machine and core class library, |
| 2 | as well as related tools, libraries, and tests. |
The Android Open Source Project | f6c3871 | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 3 | |
| 4 | A note about the licenses and header comments |
| 5 | --------------------------------------------- |
| 6 | |
| 7 | Much of the code under this directory originally came from the Apache |
| 8 | Harmony project, and as such contains the standard Apache header |
| 9 | comment. Some of the code was written originally for the Android |
| 10 | project, and as such contains the standard Android header comment. |
| 11 | Some files contain code from both projects. In these cases, the header |
| 12 | comment is a combination of the other two, and the portions of the |
| 13 | code from Harmony are identified as indicated in the comment. |
| 14 | |
| 15 | Here is the combined header comment: |
| 16 | |
| 17 | /* |
| 18 | * Copyright (C) <year> The Android Open Source Project |
| 19 | * |
| 20 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 21 | * you may not use this file except in compliance with the License. |
| 22 | * You may obtain a copy of the License at |
| 23 | * |
| 24 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 25 | * |
| 26 | * Unless required by applicable law or agreed to in writing, software |
| 27 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 28 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 29 | * See the License for the specific language governing permissions and |
| 30 | * limitations under the License. |
| 31 | * |
| 32 | * ---------- |
| 33 | * |
| 34 | * Portions of the code surrounded by "// BEGIN Harmony code" and |
| 35 | * "// END Harmony code" are copyrighted and licensed separately, as |
| 36 | * follows: |
| 37 | * |
| 38 | * Licensed to the Apache Software Foundation (ASF) under one or more |
| 39 | * contributor license agreements. See the NOTICE file distributed with |
| 40 | * this work for additional information regarding copyright ownership. |
| 41 | * The ASF licenses this file to You under the Apache License, Version 2.0 |
| 42 | * (the "License"); you may not use this file except in compliance with |
| 43 | * the License. You may obtain a copy of the License at |
| 44 | * |
| 45 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 46 | * |
| 47 | * Unless required by applicable law or agreed to in writing, software |
| 48 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 49 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 50 | * See the License for the specific language governing permissions and |
| 51 | * limitations under the License. |
| 52 | */ |
Shin-ichiro KAWASAKI | 3102d52 | 2009-06-23 14:00:12 +0900 | [diff] [blame] | 53 | |
| 54 | |
| 55 | Native SH call bridge |
| 56 | --------------------- |
| 57 | |
| 58 | Native SH call bridge is written by |
| 59 | Shin-ichiro KAWASAKI <shinichiro.kawasaki.mg@hitachi.com> |
| 60 | and Contributed to Android by Hitachi, Ltd. and Renesas Solutions Corp. |