| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import copy | 5 import copy |
| 6 | 6 |
| 7 from recipe_engine import recipe_api | 7 from recipe_engine import recipe_api |
| 8 | 8 |
| 9 | 9 |
| 10 class iOSApi(recipe_api.RecipeApi): | 10 class iOSApi(recipe_api.RecipeApi): |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 step_result.presentation.step_text = '<br />OS X %s, Xcode %s (%s)' % ( | 33 step_result.presentation.step_text = '<br />OS X %s, Xcode %s (%s)' % ( |
| 34 step_result.json.output['Mac OS X Version'], | 34 step_result.json.output['Mac OS X Version'], |
| 35 step_result.json.output['Xcode Version'], | 35 step_result.json.output['Xcode Version'], |
| 36 step_result.json.output['Xcode Build Version'], | 36 step_result.json.output['Xcode Build Version'], |
| 37 ) | 37 ) |
| 38 return step_result | 38 return step_result |
| 39 | 39 |
| 40 def checkout(self, **kwargs): | 40 def checkout(self, **kwargs): |
| 41 """Checks out Chromium.""" | 41 """Checks out Chromium.""" |
| 42 kwargs.setdefault('force', True) | 42 kwargs.setdefault('force', True) |
| 43 self.m.gclient.set_config('ios') | 43 self.m.gclient.set_config('ios', GIT_MODE=True) |
| 44 | 44 |
| 45 checkout_dir = self.m.chromium_checkout.get_checkout_dir({}) | 45 checkout_dir = self.m.chromium_checkout.get_checkout_dir({}) |
| 46 if checkout_dir: | 46 if checkout_dir: |
| 47 kwargs.setdefault('cwd', checkout_dir) | 47 kwargs.setdefault('cwd', checkout_dir) |
| 48 | 48 |
| 49 return self.m.bot_update.ensure_checkout(**kwargs) | 49 return self.m.bot_update.ensure_checkout(**kwargs) |
| 50 | 50 |
| 51 @property | 51 @property |
| 52 def compiler(self): | 52 def compiler(self): |
| 53 assert self.__config is not None | 53 assert self.__config is not None |
| (...skipping 764 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 self.configuration, | 818 self.configuration, |
| 819 'iossim', | 819 'iossim', |
| 820 ), | 820 ), |
| 821 'ninja': self.m.path.join( | 821 'ninja': self.m.path.join( |
| 822 'src', | 822 'src', |
| 823 build_dir, | 823 build_dir, |
| 824 '%s-%s' % (self.configuration, platform), | 824 '%s-%s' % (self.configuration, platform), |
| 825 'iossim', | 825 'iossim', |
| 826 ), | 826 ), |
| 827 }[self.compiler] | 827 }[self.compiler] |
| OLD | NEW |