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 23 matching lines...) Expand all Loading... |
34 # Incompatibly licensed code from the main chromium src/ directory. | 34 # Incompatibly licensed code from the main chromium src/ directory. |
35 'base/third_party/xdg_mime', | 35 'base/third_party/xdg_mime', |
36 'breakpad', | 36 'breakpad', |
37 'chrome/installer/mac/third_party/xz', | 37 'chrome/installer/mac/third_party/xz', |
38 'chrome/test/data', | 38 'chrome/test/data', |
39 'third_party/active_doc', | 39 'third_party/active_doc', |
40 'third_party/apple_apsl', | 40 'third_party/apple_apsl', |
41 'third_party/apple_sample_code', | 41 'third_party/apple_sample_code', |
42 'third_party/bsdiff', | 42 'third_party/bsdiff', |
43 'third_party/bspatch', | 43 'third_party/bspatch', |
| 44 'third_party/speech-dispatcher', |
44 'third_party/sudden_motion_sensor', | 45 'third_party/sudden_motion_sensor', |
45 'third_party/swiftshader', | 46 'third_party/swiftshader', |
46 'third_party/talloc', | 47 'third_party/talloc', |
47 'third_party/webdriver', | 48 'third_party/webdriver', |
48 'third_party/wtl', | 49 'third_party/wtl', |
49 'tools/telemetry/third_party/websocket-client', | 50 'tools/telemetry/third_party/websocket-client', |
50 | 51 |
51 # Code we don't want to build/include by accident from the main chromium | 52 # Code we don't want to build/include by accident from the main chromium |
52 # src/ directory. | 53 # src/ directory. |
53 'third_party/ashmem/*.[ch]', | 54 'third_party/ashmem/*.[ch]', |
(...skipping 10 matching lines...) Expand all Loading... |
64 'linux', | 65 'linux', |
65 'mac', | 66 'mac', |
66 'patches', | 67 'patches', |
67 'public', | 68 'public', |
68 'source', | 69 'source', |
69 'windows', | 70 'windows', |
70 ], | 71 ], |
71 } | 72 } |
72 | 73 |
73 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) | 74 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) |
OLD | NEW |