| 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 pipes | 5 import pipes |
| 6 | 6 |
| 7 from recipe_engine.config import config_item_context, ConfigGroup | 7 from recipe_engine.config import config_item_context, ConfigGroup |
| 8 from recipe_engine.config import Dict, List, Single, Static, Set, BadConf | 8 from recipe_engine.config import Dict, List, Single, Static, Set, BadConf |
| 9 from recipe_engine.config_types import Path | 9 from recipe_engine.config_types import Path |
| 10 | 10 |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 GYP_USE_SEPARATE_MSPDBSRV = Single(int, jsonish_fn=str, required=False), | 64 GYP_USE_SEPARATE_MSPDBSRV = Single(int, jsonish_fn=str, required=False), |
| 65 LLVM_DOWNLOAD_GOLD_PLUGIN = Single(int, required=False), | 65 LLVM_DOWNLOAD_GOLD_PLUGIN = Single(int, required=False), |
| 66 FORCE_MAC_TOOLCHAIN = Single(int, required=False), | 66 FORCE_MAC_TOOLCHAIN = Single(int, required=False), |
| 67 ), | 67 ), |
| 68 env = ConfigGroup( | 68 env = ConfigGroup( |
| 69 PATH = List(Path), | 69 PATH = List(Path), |
| 70 ADB_VENDOR_KEYS = Single(Path, required=False), | 70 ADB_VENDOR_KEYS = Single(Path, required=False), |
| 71 LLVM_FORCE_HEAD_REVISION = Single(basestring, required=False), | 71 LLVM_FORCE_HEAD_REVISION = Single(basestring, required=False), |
| 72 GOMA_STUBBY_PROXY_IP_ADDRESS = Single(basestring, required=False), | 72 GOMA_STUBBY_PROXY_IP_ADDRESS = Single(basestring, required=False), |
| 73 FORCE_MAC_TOOLCHAIN = Single(int, required=False), | 73 FORCE_MAC_TOOLCHAIN = Single(int, required=False), |
| 74 IGNORE_DEPS_CHANGES = Single(bool, required=False), |
| 74 ), | 75 ), |
| 75 project_generator = ConfigGroup( | 76 project_generator = ConfigGroup( |
| 76 tool = Single(basestring, empty_val='gyp'), | 77 tool = Single(basestring, empty_val='gyp'), |
| 77 args = Set(basestring), | 78 args = Set(basestring), |
| 78 ), | 79 ), |
| 79 build_dir = Single(Path), | 80 build_dir = Single(Path), |
| 80 cros_sdk = ConfigGroup( | 81 cros_sdk = ConfigGroup( |
| 81 external = Single(bool, empty_val=True, required=False), | 82 external = Single(bool, empty_val=True, required=False), |
| 82 args = List(basestring), | 83 args = List(basestring), |
| 83 ), | 84 ), |
| (...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 def cast_linux(c): | 801 def cast_linux(c): |
| 801 c.gyp_env.GYP_DEFINES['chromecast'] = 1 | 802 c.gyp_env.GYP_DEFINES['chromecast'] = 1 |
| 802 | 803 |
| 803 @config_ctx() | 804 @config_ctx() |
| 804 def internal_gles2_conform_tests(c): | 805 def internal_gles2_conform_tests(c): |
| 805 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1 | 806 c.gyp_env.GYP_DEFINES['internal_gles2_conform_tests'] = 1 |
| 806 | 807 |
| 807 @config_ctx() | 808 @config_ctx() |
| 808 def build_angle_deqp_tests(c): | 809 def build_angle_deqp_tests(c): |
| 809 c.gyp_env.GYP_DEFINES['build_angle_deqp_tests'] = 1 | 810 c.gyp_env.GYP_DEFINES['build_angle_deqp_tests'] = 1 |
| 811 |
| 812 @config_ctx() |
| 813 def ignore_deps_changes(c): |
| 814 c.env.IGNORE_DEPS_CHANGES = True |
| OLD | NEW |