1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""
Tool module for adding, to a construction environment, Chromium-specific
wrappers around Hammer builders. This gives us a central place for any
customization we need to make to the different things we build.
"""
def generate(env):
def ChromeProgram(env, *args, **kw):
return env.ComponentProgram(*args, **kw)
env.AddMethod(ChromeProgram)
def ChromeTestProgram(env, *args, **kw):
return env.ComponentTestProgram(*args, **kw)
env.AddMethod(ChromeTestProgram)
def ChromeStaticLibrary(env, *args, **kw):
kw['COMPONENT_STATIC'] = True
return env.ComponentLibrary(*args, **kw)
env.AddMethod(ChromeStaticLibrary)
def ChromeSharedLibrary(env, *args, **kw):
kw['COMPONENT_STATIC'] = False
return [env.ComponentLibrary(*args, **kw)[0]]
env.AddMethod(ChromeSharedLibrary)
def ChromeObject(env, *args, **kw):
return env.ComponentObject(*args, **kw)
env.AddMethod(ChromeObject)
def exists(env):
return True
|