OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2015 The Chromium Authors. All rights reserved. | 2 # Copyright 2015 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import argparse | 6 import argparse |
7 import operator | 7 import operator |
8 import os | 8 import os |
9 import platform | 9 import platform |
10 import re | 10 import re |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'libpam0g', | 130 'libpam0g', |
131 'libpango1.0-0', | 131 'libpango1.0-0', |
132 'libpci3', | 132 'libpci3', |
133 'libpcre3', | 133 'libpcre3', |
134 'libpixman-1-0', | 134 'libpixman-1-0', |
135 'libpng12-0', | 135 'libpng12-0', |
136 'libspeechd2', | 136 'libspeechd2', |
137 'libsqlite3-0', | 137 'libsqlite3-0', |
138 'libstdc++6', | 138 'libstdc++6', |
139 'libx11-6', | 139 'libx11-6', |
| 140 'libx11-xcb1', |
140 'libxau6', | 141 'libxau6', |
141 'libxcb1', | 142 'libxcb1', |
142 'libxcomposite1', | 143 'libxcomposite1', |
143 'libxcursor1', | 144 'libxcursor1', |
144 'libxdamage1', | 145 'libxdamage1', |
145 'libxdmcp6', | 146 'libxdmcp6', |
146 'libxext6', | 147 'libxext6', |
147 'libxfixes3', | 148 'libxfixes3', |
148 'libxi6', | 149 'libxi6', |
149 'libxinerama1', | 150 'libxinerama1', |
(...skipping 10 matching lines...) Expand all Loading... |
160 'libc6-dbg', | 161 'libc6-dbg', |
161 'libcairo2-dbg', | 162 'libcairo2-dbg', |
162 'libfontconfig1-dbg', | 163 'libfontconfig1-dbg', |
163 'libglib2.0-0-dbg', | 164 'libglib2.0-0-dbg', |
164 'libgtk2.0-0-dbg', | 165 'libgtk2.0-0-dbg', |
165 'libpango1.0-0-dbg', | 166 'libpango1.0-0-dbg', |
166 'libpcre3-dbg', | 167 'libpcre3-dbg', |
167 'libpixman-1-0-dbg', | 168 'libpixman-1-0-dbg', |
168 'libsqlite3-0-dbg', | 169 'libsqlite3-0-dbg', |
169 'libx11-6-dbg', | 170 'libx11-6-dbg', |
| 171 'libx11-xcb1-dbg', |
170 'libxau6-dbg', | 172 'libxau6-dbg', |
171 'libxcb1-dbg', | 173 'libxcb1-dbg', |
172 'libxcomposite1-dbg', | 174 'libxcomposite1-dbg', |
173 'libxcursor1-dbg', | 175 'libxcursor1-dbg', |
174 'libxdamage1-dbg', | 176 'libxdamage1-dbg', |
175 'libxdmcp6-dbg', | 177 'libxdmcp6-dbg', |
176 'libxext6-dbg', | 178 'libxext6-dbg', |
177 'libxfixes3-dbg', | 179 'libxfixes3-dbg', |
178 'libxi6-dbg', | 180 'libxi6-dbg', |
179 'libxinerama1-dbg', | 181 'libxinerama1-dbg', |
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
425 packages = sorted(set(packages), key=packages_key) | 427 packages = sorted(set(packages), key=packages_key) |
426 | 428 |
427 if args.quick_check: | 429 if args.quick_check: |
428 return quick_check(packages) | 430 return quick_check(packages) |
429 | 431 |
430 return 0 | 432 return 0 |
431 | 433 |
432 | 434 |
433 if __name__ == '__main__': | 435 if __name__ == '__main__': |
434 sys.exit(main(sys.argv[1:])) | 436 sys.exit(main(sys.argv[1:])) |
OLD | NEW |