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

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

Issue 1147773002: [Android WebView] Remove code for generating list of incompatible dirs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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
« no previous file with comments | « no previous file | android_webview/tools/webview_licenses.py » ('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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'third_party/speech-dispatcher', 49 'third_party/speech-dispatcher',
50 'third_party/sudden_motion_sensor', 50 'third_party/sudden_motion_sensor',
51 'third_party/swiftshader', 51 'third_party/swiftshader',
52 'third_party/talloc', 52 'third_party/talloc',
53 'third_party/webdriver', 53 'third_party/webdriver',
54 'third_party/wtl', 54 'third_party/wtl',
55 'tools/telemetry/third_party/websocket-client', 55 'tools/telemetry/third_party/websocket-client',
56 56
57 # Code we don't want to build/include by accident from the main chromium 57 # Code we don't want to build/include by accident from the main chromium
58 # src/ directory. 58 # src/ directory.
59 'third_party/libjpeg/*.[ch]', 59 'third_party/libjpeg/',
60 ], 60 ],
61 'third_party/icu': [ 61 'third_party/icu': [
62 # Incompatible code from ICU's repository. 62 # Incompatible code from ICU's repository.
63 'source/data/brkitr', 63 'source/data/brkitr',
64 ], 64 ],
65 } 65 }
66 66
67 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES) 67 KNOWN_INCOMPATIBLE['.'].extend(KNOWN_ISSUES)
OLDNEW
« no previous file with comments | « no previous file | android_webview/tools/webview_licenses.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698