| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'printing_unittests', | 149 'printing_unittests', |
| 150 'proximity_auth_unittests', | 150 'proximity_auth_unittests', |
| 151 'remoting_perftests', | 151 'remoting_perftests', |
| 152 'remoting_start_host', | 152 'remoting_start_host', |
| 153 'remoting_unittests', | 153 'remoting_unittests', |
| 154 'sandbox_mac_unittests', | 154 'sandbox_mac_unittests', |
| 155 'shell_dialogs_unittests', | 155 'shell_dialogs_unittests', |
| 156 'skia_unittests', | 156 'skia_unittests', |
| 157 'snapshot_unittests', | 157 'snapshot_unittests', |
| 158 'sql_unittests', | 158 'sql_unittests', |
| 159 'storage_unittests', |
| 159 'sync_client', | 160 'sync_client', |
| 160 'sync_integration_tests', | 161 'sync_integration_tests', |
| 161 'sync_listen_notifications', | 162 'sync_listen_notifications', |
| 162 'sync_performance_tests', | 163 'sync_performance_tests', |
| 163 'sync_unit_tests', | 164 'sync_unit_tests', |
| 164 'udp_proxy', | 165 'udp_proxy', |
| 165 'ui_base_unittests', | 166 'ui_base_unittests', |
| 166 'ui_struct_traits_unittests', | 167 'ui_struct_traits_unittests', |
| 167 'ui_touch_selection_unittests', | 168 'ui_touch_selection_unittests', |
| 168 'unit_tests', | 169 'unit_tests', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 'remoting_breakpad_tester.exe', | 340 'remoting_breakpad_tester.exe', |
| 340 'remoting_core.dll', | 341 'remoting_core.dll', |
| 341 'remoting_perftests.exe', | 342 'remoting_perftests.exe', |
| 342 'remoting_unittests.exe', | 343 'remoting_unittests.exe', |
| 343 'sbox_unittests.exe', | 344 'sbox_unittests.exe', |
| 344 'screenlock_library.dll', | 345 'screenlock_library.dll', |
| 345 'shell_dialogs_unittests.exe', | 346 'shell_dialogs_unittests.exe', |
| 346 'skia_unittests.exe', | 347 'skia_unittests.exe', |
| 347 'snapshot_unittests.exe', | 348 'snapshot_unittests.exe', |
| 348 'sql_unittests.exe', | 349 'sql_unittests.exe', |
| 350 'storage_unittests.exe', |
| 349 'sync_client.exe', | 351 'sync_client.exe', |
| 350 'sync_integration_tests.exe', | 352 'sync_integration_tests.exe', |
| 351 'sync_listen_notifications.exe', | 353 'sync_listen_notifications.exe', |
| 352 'sync_performance_tests.exe', | 354 'sync_performance_tests.exe', |
| 353 'sync_unit_tests.exe', | 355 'sync_unit_tests.exe', |
| 354 'task_viewer_library.dll', | 356 'task_viewer_library.dll', |
| 355 'test_ime_driver_library.dll', | 357 'test_ime_driver_library.dll', |
| 356 'test_wm_library.dll', | 358 'test_wm_library.dll', |
| 357 'touch_hud_library.dll', | 359 'touch_hud_library.dll', |
| 358 'udp_proxy.exe', | 360 'udp_proxy.exe', |
| (...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 parser.error('--target-platform is required') | 688 parser.error('--target-platform is required') |
| 687 | 689 |
| 688 return compare_build_artifacts(os.path.abspath(options.first_build_dir), | 690 return compare_build_artifacts(os.path.abspath(options.first_build_dir), |
| 689 os.path.abspath(options.second_build_dir), | 691 os.path.abspath(options.second_build_dir), |
| 690 options.target_platform, | 692 options.target_platform, |
| 691 options.recursive) | 693 options.recursive) |
| 692 | 694 |
| 693 | 695 |
| 694 if __name__ == '__main__': | 696 if __name__ == '__main__': |
| 695 sys.exit(main()) | 697 sys.exit(main()) |
| OLD | NEW |