author | Nick Fitzgerald <fitzgen@gmail.com> |
Fri, 03 Nov 2017 10:49:13 -0700 | |
changeset 390074 | ddb12bb581202cf76a51ea3ed4b3adea1bcfc99b |
parent 390073 | 0fd6f8ab2c89fe5766e1b4339a675f14037f41e6 |
child 390075 | 1041e4a4b37844729f925a2195af09d652c66871 |
push id | 54699 |
push user | mbrubeck@mozilla.com |
push date | Fri, 03 Nov 2017 17:51:27 +0000 |
treeherder | autoland@901e1a906ea5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | mbrubeck |
bugs | 1414349 |
milestone | 58.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/python/mozbuild/mozbuild/vendor_rust.py +++ b/python/mozbuild/mozbuild/vendor_rust.py @@ -264,16 +264,17 @@ license file's hash. self.log(logging.INFO, 'rm_vendor_dir', {}, 'rm -rf %s' % vendor_dir) mozfile.remove(vendor_dir) # Once we require a new enough cargo to switch to workspaces, we can # just do this once on the workspace root crate. crates_and_roots = ( ('gkrust', 'toolkit/library/rust'), ('gkrust-gtest', 'toolkit/library/gtest/rust'), ('js', 'js/rust'), + ('mozjs_sys', 'js/src'), ('webdriver', 'testing/webdriver'), ('geckodriver', 'testing/geckodriver'), ) lockfiles = [] for (lib, crate_root) in crates_and_roots: path = mozpath.join(self.topsrcdir, crate_root) # We use check_call instead of mozprocess to ensure errors are displayed.