aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/servo/packages.py')
-rw-r--r--python/servo/packages.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/python/servo/packages.py b/python/servo/packages.py
new file mode 100644
index 00000000000..9e4906dc5cf
--- /dev/null
+++ b/python/servo/packages.py
@@ -0,0 +1,26 @@
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this file,
+# You can obtain one at http://mozilla.org/MPL/2.0/.
+
+WINDOWS_GNU = set([
+ "diffutils",
+ "make",
+ "mingw-w64-x86_64-toolchain",
+ "mingw-w64-x86_64-freetype",
+ "mingw-w64-x86_64-icu",
+ "mingw-w64-x86_64-nspr",
+ "mingw-w64-x86_64-ca-certificates",
+ "mingw-w64-x86_64-expat",
+ "mingw-w64-x86_64-cmake",
+ "patch",
+ "patchutils",
+ "python2-setuptools",
+ "tar",
+])
+
+WINDOWS_MSVC = {
+ "cmake": "3.6.1",
+ "moztools": "0.0.1-5",
+ "ninja": "1.7.1",
+ "openssl": "1.0.1t-vs2015",
+}