OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 """Compare the artifacts from two builds.""" | 6 """Compare the artifacts from two builds.""" |
7 | 7 |
8 import difflib | 8 import difflib |
9 import json | 9 import json |
10 import optparse | 10 import optparse |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 'mksnapshot.exe', | 297 'mksnapshot.exe', |
298 'mojo_js_integration_tests.exe', | 298 'mojo_js_integration_tests.exe', |
299 'mojo_js_unittests.exe', | 299 'mojo_js_unittests.exe', |
300 'mojo_message_pipe_perftests.exe', | 300 'mojo_message_pipe_perftests.exe', |
301 'mojo_public_bindings_perftests.exe', | 301 'mojo_public_bindings_perftests.exe', |
302 'mojo_public_bindings_unittests.exe', | 302 'mojo_public_bindings_unittests.exe', |
303 'mojo_public_system_perftests.exe', | 303 'mojo_public_system_perftests.exe', |
304 'mojo_public_system_unittests.exe', | 304 'mojo_public_system_unittests.exe', |
305 'mojo_system_unittests.exe', | 305 'mojo_system_unittests.exe', |
306 'mus_clipboard_unittests.exe', | 306 'mus_clipboard_unittests.exe', |
307 'mus_common_unittests.exe', | |
308 'mus_demo_library.dll', | 307 'mus_demo_library.dll', |
309 'mus_demo_unittests.exe', | 308 'mus_demo_unittests.exe', |
310 'mus_gpu_unittests.exe', | 309 'mus_gpu_unittests.exe', |
311 'mus_ime_unittests.exe', | 310 'mus_ime_unittests.exe', |
312 'mus_public_unittests.exe', | 311 'mus_public_unittests.exe', |
313 'mus_ws_unittests.exe', | 312 'mus_ws_unittests.exe', |
314 'nacl_irt_x86_32.nexe', | 313 'nacl_irt_x86_32.nexe', |
315 'nacl_irt_x86_64.nexe', | 314 'nacl_irt_x86_64.nexe', |
316 'nacl_loader_unittests.exe', | 315 'nacl_loader_unittests.exe', |
317 'native_theme_unittests.exe', | 316 'native_theme_unittests.exe', |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 parser.error('--target-platform is required') | 657 parser.error('--target-platform is required') |
659 | 658 |
660 return compare_build_artifacts(os.path.abspath(options.first_build_dir), | 659 return compare_build_artifacts(os.path.abspath(options.first_build_dir), |
661 os.path.abspath(options.second_build_dir), | 660 os.path.abspath(options.second_build_dir), |
662 options.target_platform, | 661 options.target_platform, |
663 options.recursive) | 662 options.recursive) |
664 | 663 |
665 | 664 |
666 if __name__ == '__main__': | 665 if __name__ == '__main__': |
667 sys.exit(main()) | 666 sys.exit(main()) |
OLD | NEW |