| 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 known-incompatibly-licensed directories for Android WebView. | 5 """List of known-incompatibly-licensed directories for Android WebView. |
| 6 | 6 |
| 7 This is not used by the webview_licenses tool itself; it is effectively a | 7 This is not used by the webview_licenses tool itself; it is effectively a |
| 8 "cache" of the output of webview_licenses.GetIncompatibleDirectories() for the | 8 "cache" of the output of webview_licenses.GetIncompatibleDirectories() for the |
| 9 subset of repositories that WebView needs. | 9 subset of repositories that WebView needs. |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 'third_party/active_doc', | 28 'third_party/active_doc', |
| 29 'third_party/apple_apsl', | 29 'third_party/apple_apsl', |
| 30 'third_party/apple_sample_code', | 30 'third_party/apple_sample_code', |
| 31 'third_party/bsdiff', | 31 'third_party/bsdiff', |
| 32 'third_party/bspatch', | 32 'third_party/bspatch', |
| 33 'third_party/sudden_motion_sensor', | 33 'third_party/sudden_motion_sensor', |
| 34 'third_party/swiftshader', | 34 'third_party/swiftshader', |
| 35 'third_party/talloc', | 35 'third_party/talloc', |
| 36 'third_party/webdriver', | 36 'third_party/webdriver', |
| 37 'third_party/wtl', | 37 'third_party/wtl', |
| 38 'tools/chrome_remote_control/third_party/websocket-client', | 38 'tools/telemetry/third_party/websocket-client', |
| 39 ], | 39 ], |
| 40 # Incompatible code in ICU. | 40 # Incompatible code in ICU. |
| 41 'third_party/icu': [ | 41 'third_party/icu': [ |
| 42 'source/data/brkitr', | 42 'source/data/brkitr', |
| 43 ], | 43 ], |
| 44 } | 44 } |
| OLD | NEW |