| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 'angle_unittests.exe', | 184 'angle_unittests.exe', |
| 185 'app_driver_library.dll', | 185 'app_driver_library.dll', |
| 186 'app_list_demo.exe', | 186 'app_list_demo.exe', |
| 187 'app_list_presenter_unittests.exe', | 187 'app_list_presenter_unittests.exe', |
| 188 'app_list_unittests.exe', | 188 'app_list_unittests.exe', |
| 189 'app_shell.exe', | 189 'app_shell.exe', |
| 190 'app_shell_unittests.exe', | 190 'app_shell_unittests.exe', |
| 191 'ar_sample_test_driver.exe', | 191 'ar_sample_test_driver.exe', |
| 192 'ash_library.dll', | 192 'ash_library.dll', |
| 193 'ash_shell_with_content.exe', | 193 'ash_shell_with_content.exe', |
| 194 'ash_sysui_library.dll', | |
| 195 'ash_unittests.exe', | 194 'ash_unittests.exe', |
| 196 'audio_unittests.exe', | 195 'audio_unittests.exe', |
| 197 'aura_demo.exe', | 196 'aura_demo.exe', |
| 198 'aura_unittests.exe', | 197 'aura_unittests.exe', |
| 199 'base_i18n_perftests.exe', | 198 'base_i18n_perftests.exe', |
| 200 'base_perftests.exe', | 199 'base_perftests.exe', |
| 201 'base_unittests.exe', | 200 'base_unittests.exe', |
| 202 'blink_converters_unittests.exe', | 201 'blink_converters_unittests.exe', |
| 203 'blink_deprecated_test_plugin.dll', | 202 'blink_deprecated_test_plugin.dll', |
| 204 'blink_heap_unittests.exe', | 203 'blink_heap_unittests.exe', |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 parser.error('--target-platform is required') | 685 parser.error('--target-platform is required') |
| 687 | 686 |
| 688 return compare_build_artifacts(os.path.abspath(options.first_build_dir), | 687 return compare_build_artifacts(os.path.abspath(options.first_build_dir), |
| 689 os.path.abspath(options.second_build_dir), | 688 os.path.abspath(options.second_build_dir), |
| 690 options.target_platform, | 689 options.target_platform, |
| 691 options.recursive) | 690 options.recursive) |
| 692 | 691 |
| 693 | 692 |
| 694 if __name__ == '__main__': | 693 if __name__ == '__main__': |
| 695 sys.exit(main()) | 694 sys.exit(main()) |
| OLD | NEW |