Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: android_webview/tools/known_issues.py

Issue 11280278: [Android] Suppress missing licensing info warning for third_party/guava and third_party/jsr-305 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """List of known-incompatibly-licensed directories for Android WebView. 5 """List of known-incompatibly-licensed directories for Android WebView.
6 6
7 This is not used by the webview_licenses tool itself; it is effectively a 7 This is not used by the webview_licenses tool itself; it is effectively a
8 "cache" of the output of webview_licenses.GetIncompatibleDirectories() for the 8 "cache" of the output of webview_licenses.GetIncompatibleDirectories() for the
9 subset of repositories that WebView needs. 9 subset of repositories that WebView needs.
10 10
11 We store a copy here because GetIncompatibleDirectories() doesn't work properly 11 We store a copy here because GetIncompatibleDirectories() doesn't work properly
12 after things have been removed from the tree - it can no longer see the 12 after things have been removed from the tree - it can no longer see the
13 README.chromium files for previously-removed directories, but they may have 13 README.chromium files for previously-removed directories, but they may have
14 newly added files in them. As long as this list is up to date, we can remove the 14 newly added files in them. As long as this list is up to date, we can remove the
15 things listed first, and then just run the tool afterwards to validate that it 15 things listed first, and then just run the tool afterwards to validate that it
16 was sufficient. If the tool returns any extra directories then the snapshotting 16 was sufficient. If the tool returns any extra directories then the snapshotting
17 process will stop and this list must be updated. 17 process will stop and this list must be updated.
18 18
19 """ 19 """
20 20
21 # If there is a temporary license-related issue with a particular third_party 21 # If there is a temporary license-related issue with a particular third_party
22 # directory, please put it here, with a comment linking to the bug entry. 22 # directory, please put it here, with a comment linking to the bug entry.
23 KNOWN_ISSUES = [] 23 KNOWN_ISSUES = [
24 'third_party/guava', # crbug.com/163896
25 'third_party/jsr-305',
26 ]
24 27
25 KNOWN_INCOMPATIBLE = { 28 KNOWN_INCOMPATIBLE = {
26 # Incompatible code in the main chromium repository. 29 # Incompatible code in the main chromium repository.
27 '.': [ 30 '.': [
28 'base/third_party/xdg_mime', 31 'base/third_party/xdg_mime',
29 'breakpad', 32 'breakpad',
30 'chrome/installer/mac/third_party/xz', 33 'chrome/installer/mac/third_party/xz',
31 'chrome/test/data', 34 'chrome/test/data',
32 'third_party/active_doc', 35 'third_party/active_doc',
33 'third_party/apple_apsl', 36 'third_party/apple_apsl',
34 'third_party/apple_sample_code', 37 'third_party/apple_sample_code',
35 'third_party/bsdiff', 38 'third_party/bsdiff',
36 'third_party/bspatch', 39 'third_party/bspatch',
37 'third_party/sudden_motion_sensor', 40 'third_party/sudden_motion_sensor',
38 'third_party/swiftshader', 41 'third_party/swiftshader',
39 'third_party/talloc', 42 'third_party/talloc',
40 'third_party/webdriver', 43 'third_party/webdriver',
41 'third_party/wtl', 44 'third_party/wtl',
42 'tools/telemetry/third_party/websocket-client', 45 'tools/telemetry/third_party/websocket-client',
43 ], 46 ],
44 # Incompatible code in ICU. 47 # Incompatible code in ICU.
45 'third_party/icu': [ 48 'third_party/icu': [
46 'source/data/brkitr', 49 'source/data/brkitr',
47 ], 50 ],
48 } 51 }
49 52
50 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) 53 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698