summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-16 16:19:09 +0000
committermnaganov@chromium.org <mnaganov@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-16 16:19:09 +0000
commit53076aad6589d7fffed46d28b8e00fccbef67d23 (patch)
tree62134de2bbf1a484200880667543e0e841c90a64
parent988935413ac4bdf37d71bec16b9a73c7e73a9dcc (diff)
downloadchromium_src-53076aad6589d7fffed46d28b8e00fccbef67d23.zip
chromium_src-53076aad6589d7fffed46d28b8e00fccbef67d23.tar.gz
chromium_src-53076aad6589d7fffed46d28b8e00fccbef67d23.tar.bz2
Add LICENSE file for third_party/usb_ids
The license was obtained from the project author: Stephen J. Gowdy It was made by substituting appropriate fields in the BSD-3 license template. R=dannyb@google.com,torne@chromium.org BUG=161021 Review URL: https://codereview.chromium.org/11412031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168215 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--android_webview/tools/known_issues.py9
-rw-r--r--third_party/usb_ids/LICENSE17
2 files changed, 21 insertions, 5 deletions
diff --git a/android_webview/tools/known_issues.py b/android_webview/tools/known_issues.py
index f7b65ab..42e7b78 100644
--- a/android_webview/tools/known_issues.py
+++ b/android_webview/tools/known_issues.py
@@ -18,9 +18,9 @@ process will stop and this list must be updated.
"""
-KNOWN_ISSUES = set([
- 'third_party/usb_ids', # crbug.com/161021, doesn't have a LICENSE file
-])
+# If there is a temporary license-related issue with a particular third_party
+# directory, please put it here, with a comment linking to the bug entry.
+KNOWN_ISSUES = []
KNOWN_INCOMPATIBLE = {
# Incompatible code in the main chromium repository.
@@ -47,5 +47,4 @@ KNOWN_INCOMPATIBLE = {
],
}
-for directory in KNOWN_ISSUES:
- KNOWN_INCOMPATIBLE['.'].append(directory)
+KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES)
diff --git a/third_party/usb_ids/LICENSE b/third_party/usb_ids/LICENSE
new file mode 100644
index 0000000..ef7a96c
--- /dev/null
+++ b/third_party/usb_ids/LICENSE
@@ -0,0 +1,17 @@
+Copyright (c) 2012, Linux USB Project
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+o Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+o Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+o Neither the name of the Linux USB Project nor the names of its
+ contributors may be used to endorse or promote products derived from
+ this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.