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

Side by Side Diff: mojo/tools/roll/update_from_chromium.py

Issue 960873002: Update from https://crrev.com/318214 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 | « gpu/tools/check_gpu_bots.py ('k') | sandbox/linux/seccomp-bpf/sandbox_bpf.h » ('j') | 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 import argparse 6 import argparse
7 import json 7 import json
8 import os 8 import os
9 import subprocess 9 import subprocess
10 import sys 10 import sys
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "third_party/zlib", 62 "third_party/zlib",
63 "tools/android", 63 "tools/android",
64 "tools/clang", 64 "tools/clang",
65 "tools/gdb", 65 "tools/gdb",
66 "tools/generate_library_loader", 66 "tools/generate_library_loader",
67 "tools/git", 67 "tools/git",
68 "tools/gritsettings", 68 "tools/gritsettings",
69 "tools/idl_parser", 69 "tools/idl_parser",
70 "tools/json_comment_eater", 70 "tools/json_comment_eater",
71 "tools/linux", 71 "tools/linux",
72 "tools/lsan",
73 "tools/msan", 72 "tools/msan",
74 "tools/protoc_wrapper", 73 "tools/protoc_wrapper",
75 "tools/relocation_packer", 74 "tools/relocation_packer",
76 "tools/valgrind", 75 "tools/valgrind",
77 "tools/vim", 76 "tools/vim",
78 "tools/xdisplaycheck", 77 "tools/xdisplaycheck",
79 "url", 78 "url",
80 "ui/gl", 79 "ui/gl",
81 ] 80 ]
82 81
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 129
131 print "Restoring files whose contents don't track Chromium" 130 print "Restoring files whose contents don't track Chromium"
132 for f in files_not_to_roll: 131 for f in files_not_to_roll:
133 system(["git", "checkout", pre_roll_commit, "--", f], cwd=mojo_root_dir) 132 system(["git", "checkout", pre_roll_commit, "--", f], cwd=mojo_root_dir)
134 if files_not_to_roll: 133 if files_not_to_roll:
135 commit("Restored pre-roll versions of files that don't get rolled") 134 commit("Restored pre-roll versions of files that don't get rolled")
136 return 0 135 return 0
137 136
138 if __name__ == "__main__": 137 if __name__ == "__main__":
139 sys.exit(main()) 138 sys.exit(main())
OLDNEW
« no previous file with comments | « gpu/tools/check_gpu_bots.py ('k') | sandbox/linux/seccomp-bpf/sandbox_bpf.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698