Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: scripts/slave/recipe_modules/syzygy/chromium_config.py

Issue 1111413005: Some changes to allow recipes and modules to live noncentrally (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Review comments Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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_MODULES.chromium import CONFIG_CTX 5 import DEPS
6 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
7
6 from slave.recipe_config_types import Path 8 from slave.recipe_config_types import Path
7 9
8 10
9 SYZYGY_SLN = Path('[CHECKOUT]', 'syzygy', 'syzygy.sln') 11 SYZYGY_SLN = Path('[CHECKOUT]', 'syzygy', 'syzygy.sln')
10 ALL_SLN = Path('[CHECKOUT]', 'syzygy', 'build', 'all.sln') 12 ALL_SLN = Path('[CHECKOUT]', 'syzygy', 'build', 'all.sln')
11 KASKO_SLN = Path('[CHECKOUT]', 'syzygy', 'kasko', 'kasko.sln') 13 KASKO_SLN = Path('[CHECKOUT]', 'syzygy', 'kasko', 'kasko.sln')
12 14
13 15
14 @CONFIG_CTX(includes=['msvs', 'msvs2013']) 16 @CONFIG_CTX(includes=['msvs', 'msvs2013'])
15 def _syzygy_base(c): 17 def _syzygy_base(c):
(...skipping 22 matching lines...) Expand all
38 40
39 41
40 @CONFIG_CTX(includes=['_syzygy_base'], 42 @CONFIG_CTX(includes=['_syzygy_base'],
41 config_vars={'BUILD_CONFIG': 'Release'}) 43 config_vars={'BUILD_CONFIG': 'Release'})
42 def kasko_official(c): 44 def kasko_official(c):
43 c.compile_py.clobber = True 45 c.compile_py.clobber = True
44 c.compile_py.default_targets.clear() 46 c.compile_py.default_targets.clear()
45 c.compile_py.default_targets.add('official_kasko_build') 47 c.compile_py.default_targets.add('official_kasko_build')
46 c.compile_py.solution = KASKO_SLN 48 c.compile_py.solution = KASKO_SLN
47 c.gyp_env.GYP_DEFINES['official_build'] = 1 49 c.gyp_env.GYP_DEFINES['official_build'] = 1
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/libyuv/gclient_config.py ('k') | scripts/slave/recipe_modules/syzygy/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698