Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(731)

Side by Side Diff: tools/determinism/compare_build_artifacts.py

Issue 2339633002: mash: Port KeyboardUIMus to mojo:ash; remove sysui. (Closed)
Patch Set: Add mash NOTIMPLEMENTED() in AccessibilityManager::UpdateVirtualKeyboardFromPref() Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/chromeos/accessibility/accessibility_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/accessibility/accessibility_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698