OLD | NEW |
---|---|
1 # Copyright (C) 2011 Google Inc. All rights reserved. | 1 # Copyright (C) 2011 Google Inc. All rights reserved. |
2 # | 2 # |
3 # Redistribution and use in source and binary forms, with or without | 3 # Redistribution and use in source and binary forms, with or without |
4 # modification, are permitted provided that the following conditions are | 4 # modification, are permitted provided that the following conditions are |
5 # met: | 5 # met: |
6 # | 6 # |
7 # * Redistributions of source code must retain the above copyright | 7 # * Redistributions of source code must retain the above copyright |
8 # notice, this list of conditions and the following disclaimer. | 8 # notice, this list of conditions and the following disclaimer. |
9 # * Redistributions in binary form must reproduce the above | 9 # * Redistributions in binary form must reproduce the above |
10 # copyright notice, this list of conditions and the following disclaimer | 10 # copyright notice, this list of conditions and the following disclaimer |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 } | 58 } |
59 | 59 |
60 | 60 |
61 # Mapping from port name to the deps builder of the same os: | 61 # Mapping from port name to the deps builder of the same os: |
62 _deps_builders = { | 62 _deps_builders = { |
63 "linux-x86": "WebKit Linux (deps)", | 63 "linux-x86": "WebKit Linux (deps)", |
64 "linux-x86_64": "WebKit Linux (deps)", | 64 "linux-x86_64": "WebKit Linux (deps)", |
65 "win-xp": "WebKit XP (deps)", | 65 "win-xp": "WebKit XP (deps)", |
66 "win-win7": "WebKit XP (deps)", | 66 "win-win7": "WebKit XP (deps)", |
67 "mac-snowleopard": "WebKit Mac10.6 (deps)", | 67 "mac-snowleopard": "WebKit Mac10.6 (deps)", |
68 "mac-lion": "WebKit Mac10.6 (deps)", | 68 "mac-lion": "WebKit Mac10.7 (deps)", |
69 "mac-mountainlion": "WebKit Mac10.6 (deps)", | 69 "mac-mountainlion": "WebKit Mac10.8 (deps)", |
70 "mac-mavericks": "WebKit Mac10.6 (deps)", | 70 "mac-mavericks": "WebKit Mac10.9 (deps)", |
71 "mac-retina": "WebKit Mac10.6 (deps)", | 71 "mac-retina": "WebKit Mac10.8 (deps)", |
Dirk Pranke
2014/10/30 19:08:40
Unfortunately, these bots don't actually exist, wh
tyoshino (SeeGerritForStatus)
2014/11/05 05:42:30
I see. OK. I updated the CL to just add a comment.
| |
72 } | 72 } |
73 | 73 |
74 | 74 |
75 _ports_without_builders = [ | 75 _ports_without_builders = [ |
76 ] | 76 ] |
77 | 77 |
78 | 78 |
79 def builder_path_from_name(builder_name): | 79 def builder_path_from_name(builder_name): |
80 return re.sub(r'[\s().]', '_', builder_name) | 80 return re.sub(r'[\s().]', '_', builder_name) |
81 | 81 |
(...skipping 28 matching lines...) Expand all Loading... | |
110 return builder_name | 110 return builder_name |
111 return debug_builder_name | 111 return debug_builder_name |
112 | 112 |
113 | 113 |
114 def builder_path_for_port_name(port_name): | 114 def builder_path_for_port_name(port_name): |
115 builder_path_from_name(builder_name_for_port_name(port_name)) | 115 builder_path_from_name(builder_name_for_port_name(port_name)) |
116 | 116 |
117 | 117 |
118 def deps_builder_name_for_port_name(target_port_name): | 118 def deps_builder_name_for_port_name(target_port_name): |
119 return _deps_builders.get(target_port_name, None) | 119 return _deps_builders.get(target_port_name, None) |
OLD | NEW |