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

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

Issue 952893003: Update from https://crrev.com/317530 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix gn for nacl Created 5 years, 10 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 | « mojo/tools/roll/cc_strip_video.patch ('k') | mojo/tools/upload_binaries.py » ('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 30 matching lines...) Expand all
41 "third_party/jstemplate", 41 "third_party/jstemplate",
42 "third_party/khronos", 42 "third_party/khronos",
43 "third_party/libXNVCtrl", 43 "third_party/libXNVCtrl",
44 "third_party/libevent", 44 "third_party/libevent",
45 "third_party/libjpeg", 45 "third_party/libjpeg",
46 "third_party/libpng", 46 "third_party/libpng",
47 "third_party/libxml", 47 "third_party/libxml",
48 "third_party/markupsafe", 48 "third_party/markupsafe",
49 "third_party/mesa", 49 "third_party/mesa",
50 "third_party/modp_b64", 50 "third_party/modp_b64",
51 "third_party/ots",
51 "third_party/ply", 52 "third_party/ply",
52 "third_party/protobuf", 53 "third_party/protobuf",
53 "third_party/pymock", 54 "third_party/pymock",
54 "third_party/qcms", 55 "third_party/qcms",
55 "third_party/re2", 56 "third_party/re2",
56 "third_party/sfntly", 57 "third_party/sfntly",
57 "third_party/smhasher", 58 "third_party/smhasher",
58 "third_party/sqlite", 59 "third_party/sqlite",
59 "third_party/tcmalloc", 60 "third_party/tcmalloc",
60 "third_party/yasm", 61 "third_party/yasm",
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 130
130 print "Restoring files whose contents don't track Chromium" 131 print "Restoring files whose contents don't track Chromium"
131 for f in files_not_to_roll: 132 for f in files_not_to_roll:
132 system(["git", "checkout", pre_roll_commit, "--", f], cwd=mojo_root_dir) 133 system(["git", "checkout", pre_roll_commit, "--", f], cwd=mojo_root_dir)
133 if files_not_to_roll: 134 if files_not_to_roll:
134 commit("Restored pre-roll versions of files that don't get rolled") 135 commit("Restored pre-roll versions of files that don't get rolled")
135 return 0 136 return 0
136 137
137 if __name__ == "__main__": 138 if __name__ == "__main__":
138 sys.exit(main()) 139 sys.exit(main())
OLDNEW
« no previous file with comments | « mojo/tools/roll/cc_strip_video.patch ('k') | mojo/tools/upload_binaries.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698