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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 "linux-x86_64": "WebKit Linux (deps)", | 65 "linux-x86_64": "WebKit Linux (deps)", |
66 "win-xp": "WebKit XP (deps)", | 66 "win-xp": "WebKit XP (deps)", |
67 "win-win7": "WebKit XP (deps)", | 67 "win-win7": "WebKit XP (deps)", |
68 "mac-snowleopard": "WebKit Mac10.6 (deps)", | 68 "mac-snowleopard": "WebKit Mac10.6 (deps)", |
69 # The following port names are mapped to 10.6 bot since we don't have bots | 69 # The following port names are mapped to 10.6 bot since we don't have bots |
70 # for these ports. | 70 # for these ports. |
71 "mac-lion": "WebKit Mac10.6 (deps)", | 71 "mac-lion": "WebKit Mac10.6 (deps)", |
72 "mac-mountainlion": "WebKit Mac10.6 (deps)", | 72 "mac-mountainlion": "WebKit Mac10.6 (deps)", |
73 "mac-mavericks": "WebKit Mac10.6 (deps)", | 73 "mac-mavericks": "WebKit Mac10.6 (deps)", |
74 "mac-retina": "WebKit Mac10.6 (deps)", | 74 "mac-retina": "WebKit Mac10.6 (deps)", |
| 75 "mac-yosemite": "WebKit Mac10.6 (deps)", |
75 } | 76 } |
76 | 77 |
77 | 78 |
78 _ports_without_builders = [ | 79 _ports_without_builders = [ |
79 ] | 80 ] |
80 | 81 |
81 | 82 |
82 def builder_path_from_name(builder_name): | 83 def builder_path_from_name(builder_name): |
83 return re.sub(r'[\s().]', '_', builder_name) | 84 return re.sub(r'[\s().]', '_', builder_name) |
84 | 85 |
(...skipping 28 matching lines...) Expand all Loading... |
113 return builder_name | 114 return builder_name |
114 return debug_builder_name | 115 return debug_builder_name |
115 | 116 |
116 | 117 |
117 def builder_path_for_port_name(port_name): | 118 def builder_path_for_port_name(port_name): |
118 builder_path_from_name(builder_name_for_port_name(port_name)) | 119 builder_path_from_name(builder_name_for_port_name(port_name)) |
119 | 120 |
120 | 121 |
121 def deps_builder_name_for_port_name(target_port_name): | 122 def deps_builder_name_for_port_name(target_port_name): |
122 return _deps_builders.get(target_port_name, None) | 123 return _deps_builders.get(target_port_name, None) |
OLD | NEW |