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

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

Issue 131913006: Remove third_party/active_doc now that Chrome Frame is gone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 | third_party/active_doc/LICENSE » ('j') | 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 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 18 matching lines...) Expand all
29 'third_party/accessibility-developer-tools', # crbug.com/165901 29 'third_party/accessibility-developer-tools', # crbug.com/165901
30 ] 30 ]
31 31
32 KNOWN_INCOMPATIBLE = { 32 KNOWN_INCOMPATIBLE = {
33 '.': [ 33 '.': [
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',
40 'third_party/apple_apsl', 39 'third_party/apple_apsl',
41 'third_party/apple_sample_code', 40 'third_party/apple_sample_code',
42 'third_party/bsdiff', 41 'third_party/bsdiff',
43 'third_party/bspatch', 42 'third_party/bspatch',
44 'third_party/instrumented_libraries', 43 'third_party/instrumented_libraries',
45 'third_party/liblouis', 44 'third_party/liblouis',
46 'third_party/readability', 45 'third_party/readability',
47 'third_party/speech-dispatcher', 46 'third_party/speech-dispatcher',
48 'third_party/sudden_motion_sensor', 47 'third_party/sudden_motion_sensor',
49 'third_party/swiftshader', 48 'third_party/swiftshader',
50 'third_party/talloc', 49 'third_party/talloc',
51 'third_party/webdriver', 50 'third_party/webdriver',
52 'third_party/wtl', 51 'third_party/wtl',
53 'tools/telemetry/third_party/websocket-client', 52 'tools/telemetry/third_party/websocket-client',
54 53
55 # Code we don't want to build/include by accident from the main chromium 54 # Code we don't want to build/include by accident from the main chromium
56 # src/ directory. 55 # src/ directory.
57 'third_party/ashmem/*.[ch]', 56 'third_party/ashmem/*.[ch]',
58 'third_party/expat/files/lib', 57 'third_party/expat/files/lib',
59 'third_party/libjpeg/*.[ch]', 58 'third_party/libjpeg/*.[ch]',
60 ], 59 ],
61 'third_party/icu': [ 60 'third_party/icu': [
62 # Incompatible code from ICU's repository. 61 # Incompatible code from ICU's repository.
63 'source/data/brkitr', 62 'source/data/brkitr',
64 ], 63 ],
65 } 64 }
66 65
67 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) 66 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES)
OLDNEW
« no previous file with comments | « no previous file | third_party/active_doc/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698