()
| 631 | |
| 632 | |
| 633 | def read_update_file(): |
| 634 | update_path = os.path.join(cef_src_dir, 'CHROMIUM_UPDATE.txt') |
| 635 | if not os.path.exists(update_path): |
| 636 | msg("Missing file: %s" % update_path) |
| 637 | return None |
| 638 | |
| 639 | msg("Reading %s" % update_path) |
| 640 | return read_config_file(update_path) |
| 641 | |
| 642 | |
| 643 | def log_chromium_changes(): |
no test coverage detected