Chromium Code Reviews| 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 from recipe_engine.config_types import Path | 5 from recipe_engine.config_types import Path |
| 6 from recipe_engine import config as recipe_config | 6 from recipe_engine import config as recipe_config |
| 7 | 7 |
| 8 import DEPS | 8 import DEPS |
| 9 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX | 9 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX |
| 10 | 10 |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 162 gyp_defs['buildtype'] = 'Official' | 162 gyp_defs['buildtype'] = 'Official' |
| 163 | 163 |
| 164 @CONFIG_CTX(includes=['main_builder']) | 164 @CONFIG_CTX(includes=['main_builder']) |
| 165 def webview_perf(c): | 165 def webview_perf(c): |
| 166 gyp_defs = c.gyp_env.GYP_DEFINES | 166 gyp_defs = c.gyp_env.GYP_DEFINES |
| 167 gyp_defs['android_webview_telemetry_build'] = 1 | 167 gyp_defs['android_webview_telemetry_build'] = 1 |
| 168 | 168 |
| 169 @CONFIG_CTX(includes=['main_builder']) | 169 @CONFIG_CTX(includes=['main_builder']) |
| 170 def cast_builder(c): | 170 def cast_builder(c): |
| 171 c.gyp_env.GYP_DEFINES['chromecast'] = 1 | 171 c.gyp_env.GYP_DEFINES['chromecast'] = 1 |
| 172 | |
| 173 @CONFIG_CTX(includes=['main_builder']) | |
|
Paweł Hajdan Jr.
2015/08/31 11:48:16
It still includes "main_builder" which is confusin
| |
| 174 def errorprone(c): | |
| 175 c.gyp_env.GYP_DEFINES['enable_errorprone'] = 1 | |
| OLD | NEW |