OLD | NEW |
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 directories which are known issues for Android WebView. | 5 """List of directories which are known issues for Android WebView. |
6 | 6 |
7 There are a number of directories in the Chromium tree which should be removed | 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 | 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 | 9 that the build inside the Android tree does not accidentally include the wrong |
10 headers. | 10 headers. |
(...skipping 21 matching lines...) Expand all Loading... |
32 '.': [ | 32 '.': [ |
33 # Incompatibly licensed code from the main chromium src/ directory. | 33 # Incompatibly licensed code from the main chromium src/ directory. |
34 'base/third_party/xdg_mime', | 34 'base/third_party/xdg_mime', |
35 'breakpad', | 35 'breakpad', |
36 'chrome/installer/mac/third_party/xz', | 36 'chrome/installer/mac/third_party/xz', |
37 'chrome/test/data', | 37 'chrome/test/data', |
38 'third_party/apple_apsl', | 38 'third_party/apple_apsl', |
39 'third_party/apple_sample_code', | 39 'third_party/apple_sample_code', |
40 'third_party/bsdiff', | 40 'third_party/bsdiff', |
41 'third_party/bspatch', | 41 'third_party/bspatch', |
| 42 'third_party/elfutils', |
42 'third_party/instrumented_libraries', | 43 'third_party/instrumented_libraries', |
43 'third_party/liblouis', | 44 'third_party/liblouis', |
44 'third_party/speech-dispatcher', | 45 'third_party/speech-dispatcher', |
45 'third_party/sudden_motion_sensor', | 46 'third_party/sudden_motion_sensor', |
46 'third_party/swiftshader', | 47 'third_party/swiftshader', |
47 'third_party/talloc', | 48 'third_party/talloc', |
48 'third_party/webdriver', | 49 'third_party/webdriver', |
49 'third_party/wtl', | 50 'third_party/wtl', |
50 'tools/telemetry/third_party/websocket-client', | 51 'tools/telemetry/third_party/websocket-client', |
51 | 52 |
52 # Code we don't want to build/include by accident from the main chromium | 53 # Code we don't want to build/include by accident from the main chromium |
53 # src/ directory. | 54 # src/ directory. |
54 'third_party/ashmem/*.[ch]', | 55 'third_party/ashmem/*.[ch]', |
55 'third_party/expat/files/lib', | 56 'third_party/expat/files/lib', |
56 'third_party/libjpeg/*.[ch]', | 57 'third_party/libjpeg/*.[ch]', |
57 ], | 58 ], |
58 'third_party/icu': [ | 59 'third_party/icu': [ |
59 # Incompatible code from ICU's repository. | 60 # Incompatible code from ICU's repository. |
60 'source/data/brkitr', | 61 'source/data/brkitr', |
61 ], | 62 ], |
62 } | 63 } |
63 | 64 |
64 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) | 65 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) |
OLD | NEW |