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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py

Issue 2188413005: Add mac10.11_retina_blink_rel and android_blink_rel to builder config. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py
index d1b344209e2a7ce5e1f37cac916ec21e6c997f0f..489e00e20ef761d29b3cbf69b4773501e6bb18a3 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/config/builders.py
@@ -100,8 +100,11 @@ BUILDERS = {
"specifiers": ['Mac10.11', 'Release'],
"is_try_builder": True,
},
- # TODO(qyearsley): Add mac retina builder here
- # when it is ready. http://crbug.com/590036.
+ "mac10.11_retina_blink_rel": {
+ "port_name": "mac-retina",
+ "specifiers": ['Retina', 'Release'],
+ "is_try_builder": True,
+ },
"win7_blink_rel": {
"port_name": "win-win7",
"specifiers": ['Win7', 'Release'],
@@ -112,4 +115,9 @@ BUILDERS = {
"specifiers": ['Win7', 'Release'],
"is_try_builder": True,
},
+ "android_blink_rel": {
+ "port_name": "android",
+ "specifiers": ['Android', 'Release'],
+ "is_try_builder": True,
+ },
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698