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

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

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 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 import DEPS 5 import DEPS
6 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX 6 CONFIG_CTX = DEPS['chromium'].CONFIG_CTX
7 7
8 from slave.recipe_config_types import Path 8 from recipe_engine.config_types import Path
9 9
10 10
11 SYZYGY_SLN = Path('[CHECKOUT]', 'syzygy', 'syzygy.sln') 11 SYZYGY_SLN = Path('[CHECKOUT]', 'syzygy', 'syzygy.sln')
12 ALL_SLN = Path('[CHECKOUT]', 'syzygy', 'build', 'all.sln') 12 ALL_SLN = Path('[CHECKOUT]', 'syzygy', 'build', 'all.sln')
13 KASKO_SLN = Path('[CHECKOUT]', 'syzygy', 'kasko', 'kasko.sln') 13 KASKO_SLN = Path('[CHECKOUT]', 'syzygy', 'kasko', 'kasko.sln')
14 14
15 15
16 @CONFIG_CTX(includes=['msvs', 'msvs2013']) 16 @CONFIG_CTX(includes=['msvs', 'msvs2013'])
17 def _syzygy_base(c): 17 def _syzygy_base(c):
18 c.project_generator.tool = 'gyp' 18 c.project_generator.tool = 'gyp'
(...skipping 21 matching lines...) Expand all
40 40
41 41
42 @CONFIG_CTX(includes=['_syzygy_base'], 42 @CONFIG_CTX(includes=['_syzygy_base'],
43 config_vars={'BUILD_CONFIG': 'Release'}) 43 config_vars={'BUILD_CONFIG': 'Release'})
44 def kasko_official(c): 44 def kasko_official(c):
45 c.compile_py.clobber = True 45 c.compile_py.clobber = True
46 c.compile_py.default_targets.clear() 46 c.compile_py.default_targets.clear()
47 c.compile_py.default_targets.add('official_kasko_build') 47 c.compile_py.default_targets.add('official_kasko_build')
48 c.compile_py.solution = KASKO_SLN 48 c.compile_py.solution = KASKO_SLN
49 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/syzygy/api.py ('k') | scripts/slave/recipe_modules/syzygy/config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698