OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Toolchain
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/tools/gn/
toolchain.cc
5
#include "tools/gn/
toolchain
.h"
10
const char*
Toolchain
::kToolCc = "cc";
11
const char*
Toolchain
::kToolCxx = "cxx";
12
const char*
Toolchain
::kToolObjC = "objc";
13
const char*
Toolchain
::kToolObjCxx = "objcxx";
14
const char*
Toolchain
::kToolRc = "rc";
15
const char*
Toolchain
::kToolAsm = "asm";
16
const char*
Toolchain
::kToolAlink = "alink";
17
const char*
Toolchain
::kToolSolink = "solink";
18
const char*
Toolchain
::kToolLink = "link"
[
all
...]
toolchain.h
14
// Holds information on a specific
toolchain
. This data is filled in when we
15
// encounter a
toolchain
definition.
18
// particular, when a target uses a
toolchain
, it should have a dependency on
19
// that
toolchain
's object so that we can be sure we loaded the
toolchain
22
// Note on threadsafety: The label of the
toolchain
never changes so can
24
// the
toolchain
name). But the values in the
toolchain
do, so these can't
26
class
Toolchain
: public Item {
73
Toolchain
(const Settings* settings, const Label& label)
[
all
...]
Completed in 46 milliseconds