- add sources.
[platform/framework/web/crosswalk.git] / src / android_webview / tools / known_issues.py
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
3 # found in the LICENSE file.
4
5 """List of directories which are known issues for Android WebView.
6
7 There are a number of directories in the Chromium tree which should be removed
8 when merging into Android. Some are for licensing reasons; others are to ensure
9 that the build inside the Android tree does not accidentally include the wrong
10 headers.
11
12 This is not used by the webview_licenses tool itself; it is effectively a
13 "cache" of the output of webview_licenses.GetIncompatibleDirectories() for the
14 subset of repositories that WebView needs.
15
16 We store a copy here because GetIncompatibleDirectories() doesn't work properly
17 after things have been removed from the tree - it can no longer see the
18 README.chromium files for previously-removed directories, but they may have
19 newly added files in them. As long as this list is up to date, we can remove the
20 things listed first, and then just run the tool afterwards to validate that it
21 was sufficient. If the tool returns any extra directories then the snapshotting
22 process will stop and this list must be updated.
23
24 """
25
26 # If there is a temporary license-related issue with a particular third_party
27 # directory, please put it here, with a comment linking to the bug entry.
28 KNOWN_ISSUES = [
29   'third_party/accessibility-developer-tools', # crbug.com/165901
30 ]
31
32 KNOWN_INCOMPATIBLE = {
33     '.': [
34         # Incompatibly licensed code from the main chromium src/ directory.
35         'base/third_party/xdg_mime',
36         'breakpad',
37         'chrome/installer/mac/third_party/xz',
38         'chrome/test/data',
39         'third_party/active_doc',
40         'third_party/apple_apsl',
41         'third_party/apple_sample_code',
42         'third_party/bsdiff',
43         'third_party/bspatch',
44         'third_party/speech-dispatcher',
45         'third_party/sudden_motion_sensor',
46         'third_party/swiftshader',
47         'third_party/talloc',
48         'third_party/webdriver',
49         'third_party/wtl',
50         'tools/telemetry/third_party/websocket-client',
51
52         # Code we don't want to build/include by accident from the main chromium
53         # src/ directory.
54         'third_party/ashmem/*.[ch]',
55         'third_party/expat/files/lib',
56         'third_party/libjpeg/*.[ch]',
57     ],
58     'third_party/icu': [
59         # Incompatible code from ICU's repository.
60         'source/data/brkitr',
61     ],
62 }
63
64 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES)