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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 'third_party/bspatch', | 43 'third_party/bspatch', |
44 'third_party/sudden_motion_sensor', | 44 'third_party/sudden_motion_sensor', |
45 'third_party/swiftshader', | 45 'third_party/swiftshader', |
46 'third_party/talloc', | 46 'third_party/talloc', |
47 'third_party/webdriver', | 47 'third_party/webdriver', |
48 'third_party/wtl', | 48 'third_party/wtl', |
49 'tools/telemetry/third_party/websocket-client', | 49 'tools/telemetry/third_party/websocket-client', |
50 | 50 |
51 # Code we don't want to build/include by accident from the main chromium | 51 # Code we don't want to build/include by accident from the main chromium |
52 # src/ directory. | 52 # src/ directory. |
| 53 'third_party/ashmem/*.[ch]', |
53 'third_party/expat/files/lib', | 54 'third_party/expat/files/lib', |
54 'third_party/libjpeg/*.[ch]', | 55 'third_party/libjpeg/*.[ch]', |
55 ], | 56 ], |
56 'third_party/icu': [ | 57 'third_party/icu': [ |
57 # Incompatible code from ICU's repository. | 58 # Incompatible code from ICU's repository. |
58 'source/data/brkitr', | 59 'source/data/brkitr', |
59 | 60 |
60 # Code we don't want to build/include by accident from ICU's repository. | 61 # Code we don't want to build/include by accident from ICU's repository. |
61 'android', | 62 'android', |
62 'build', | 63 'build', |
63 'linux', | 64 'linux', |
64 'mac', | 65 'mac', |
65 'patches', | 66 'patches', |
66 'public', | 67 'public', |
67 'source', | 68 'source', |
68 'windows', | 69 'windows', |
69 ], | 70 ], |
70 } | 71 } |
71 | 72 |
72 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) | 73 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) |
OLD | NEW |