blob: f2e8925fdfc21e2c3911d68e4bf9560b69a8ef6e (
plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
// Copyright (c) 2013 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.
#ifndef TOOLS_GN_SETTINGS_H_
#define TOOLS_GN_SETTINGS_H_
#include "base/files/file_path.h"
#include "tools/gn/build_settings.h"
#include "tools/gn/import_manager.h"
#include "tools/gn/output_file.h"
#include "tools/gn/scope.h"
#include "tools/gn/source_dir.h"
#include "tools/gn/toolchain.h"
// Holds the settings for one toolchain invocation. There will be one
// Settings object for each toolchain type, each referring to the same
// BuildSettings object for shared stuff.
//
// The Settings object is const once it is constructed, which allows us to
// use it from multiple threads during target generation without locking (which
// is important, because it gets used a lot).
//
// The Toolchain object holds the set of stuff that is set by the toolchain
// declaration, which obviously needs to be set later when we actually parse
// the file with the toolchain declaration in it.
class Settings {
public:
enum TargetOS {
UNKNOWN,
LINUX,
MAC,
WIN
};
// Constructs a toolchain settings. The output_subdir_name is the name we
// should use for the subdirectory in the build output directory for this
// toolchain's outputs. It should have no slashes in it. The default
// toolchain should use an empty string.
Settings(const BuildSettings* build_settings,
const std::string& output_subdir_name);
~Settings();
const BuildSettings* build_settings() const { return build_settings_; }
const Label& toolchain_label() const { return toolchain_label_; }
void set_toolchain_label(const Label& l) { toolchain_label_ = l; }
const Label& default_toolchain_label() const {
return default_toolchain_label_;
}
void set_default_toolchain_label(const Label& default_label) {
default_toolchain_label_ = default_label;
}
// Indicates if this corresponds to the default toolchain.
bool is_default() const {
return toolchain_label_ == default_toolchain_label_;
}
bool IsMac() const { return target_os_ == MAC; }
bool IsLinux() const { return target_os_ == LINUX; }
bool IsWin() const { return target_os_ == WIN; }
TargetOS target_os() const { return target_os_; }
void set_target_os(TargetOS t) { target_os_ = t; }
const OutputFile& toolchain_output_subdir() const {
return toolchain_output_subdir_;
}
const SourceDir& toolchain_output_dir() const {
return toolchain_output_dir_;
}
// Directory for generated files.
const SourceDir& toolchain_gen_dir() const {
return toolchain_gen_dir_;
}
// The import manager caches the result of executing imported files in the
// context of a given settings object.
//
// See the ItemTree getter in GlobalSettings for why this doesn't return a
// const pointer.
ImportManager& import_manager() const { return import_manager_; }
const Scope* base_config() const { return &base_config_; }
Scope* base_config() { return &base_config_; }
// Set to true when every target we encounter should be generated. False
// means that only targets that have a dependency from (directly or
// indirectly) some magic root node are actually generated. See the comments
// on ItemTree for more.
bool greedy_target_generation() const {
return greedy_target_generation_;
}
void set_greedy_target_generation(bool gtg) {
greedy_target_generation_ = gtg;
}
private:
const BuildSettings* build_settings_;
Label toolchain_label_;
Label default_toolchain_label_;
TargetOS target_os_;
mutable ImportManager import_manager_;
// The subdirectory inside the build output for this toolchain. For the
// default toolchain, this will be empty (since the deafult toolchain's
// output directory is the same as the build directory). When nonempty, this
// is guaranteed to end in a slash.
OutputFile toolchain_output_subdir_;
// Full source file path to the toolchain output directory.
SourceDir toolchain_output_dir_;
SourceDir toolchain_gen_dir_;
Scope base_config_;
bool greedy_target_generation_;
DISALLOW_COPY_AND_ASSIGN(Settings);
};
#endif // TOOLS_GN_SETTINGS_H_
|