| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 re | 5 import re |
| 6 | 6 |
| 7 from recipe_engine import recipe_api | 7 from recipe_engine import recipe_api |
| 8 from recipe_engine import util as recipe_util | 8 from recipe_engine import util as recipe_util |
| 9 | 9 |
| 10 class TestLauncherFilterFileInputPlaceholder(recipe_util.InputPlaceholder): | 10 class TestLauncherFilterFileInputPlaceholder(recipe_util.InputPlaceholder): |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 ret['ADB_VENDOR_KEYS'] = self.c.env.ADB_VENDOR_KEYS | 72 ret['ADB_VENDOR_KEYS'] = self.c.env.ADB_VENDOR_KEYS |
| 73 if self.c.env.LLVM_FORCE_HEAD_REVISION: | 73 if self.c.env.LLVM_FORCE_HEAD_REVISION: |
| 74 ret['LLVM_FORCE_HEAD_REVISION'] = self.c.env.LLVM_FORCE_HEAD_REVISION | 74 ret['LLVM_FORCE_HEAD_REVISION'] = self.c.env.LLVM_FORCE_HEAD_REVISION |
| 75 if self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS: | 75 if self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS: |
| 76 ret['GOMA_STUBBY_PROXY_IP_ADDRESS'] = \ | 76 ret['GOMA_STUBBY_PROXY_IP_ADDRESS'] = \ |
| 77 self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS | 77 self.c.env.GOMA_STUBBY_PROXY_IP_ADDRESS |
| 78 ret['GOMA_SERVICE_ACCOUNT_JSON_FILE'] = \ | 78 ret['GOMA_SERVICE_ACCOUNT_JSON_FILE'] = \ |
| 79 self.m.goma.service_account_json_path | 79 self.m.goma.service_account_json_path |
| 80 if self.c.env.FORCE_MAC_TOOLCHAIN: | 80 if self.c.env.FORCE_MAC_TOOLCHAIN: |
| 81 ret['FORCE_MAC_TOOLCHAIN'] = self.c.env.FORCE_MAC_TOOLCHAIN | 81 ret['FORCE_MAC_TOOLCHAIN'] = self.c.env.FORCE_MAC_TOOLCHAIN |
| 82 if self.c.env.IGNORE_DEPS_CHANGES: | |
| 83 ret['IGNORE_DEPS_CHANGES'] = '1' | |
| 84 return ret | 82 return ret |
| 85 | 83 |
| 86 @property | 84 @property |
| 87 def build_properties(self): | 85 def build_properties(self): |
| 88 return self._build_properties | 86 return self._build_properties |
| 89 | 87 |
| 90 @property | 88 @property |
| 91 def output_dir(self): | 89 def output_dir(self): |
| 92 """Return the path to the built executable directory.""" | 90 """Return the path to the built executable directory.""" |
| 93 return self.c.build_dir.join(self.c.build_config_fs) | 91 return self.c.build_dir.join(self.c.build_config_fs) |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 826 })) | 824 })) |
| 827 | 825 |
| 828 def get_annotate_by_test_name(self, test_name): | 826 def get_annotate_by_test_name(self, test_name): |
| 829 return 'graphing' | 827 return 'graphing' |
| 830 | 828 |
| 831 def download_lto_plugin(self): | 829 def download_lto_plugin(self): |
| 832 return self.m.python( | 830 return self.m.python( |
| 833 name='download LTO plugin', | 831 name='download LTO plugin', |
| 834 script=self.m.path['checkout'].join( | 832 script=self.m.path['checkout'].join( |
| 835 'build', 'download_gold_plugin.py')) | 833 'build', 'download_gold_plugin.py')) |
| OLD | NEW |