summaryrefslogtreecommitdiffstats
path: root/android_webview
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 /android_webview
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
Diffstat (limited to 'android_webview')
-rw-r--r--android_webview/tools/known_issues.py9
1 files changed, 4 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)