| Index: tools/gn/test_with_scope.cc
|
| diff --git a/tools/gn/test_with_scope.cc b/tools/gn/test_with_scope.cc
|
| index e83c99cb060e2bb742744061ac83f63f728f5c38..e149e92d08448a6704dd9582606ab5e6edce5567 100644
|
| --- a/tools/gn/test_with_scope.cc
|
| +++ b/tools/gn/test_with_scope.cc
|
| @@ -6,9 +6,13 @@
|
|
|
| TestWithScope::TestWithScope()
|
| : build_settings_(),
|
| - toolchain_(Label(SourceDir("//toolchain/"), "tc")),
|
| - settings_(&build_settings_, &toolchain_, std::string()),
|
| + settings_(&build_settings_, std::string()),
|
| + toolchain_(&settings_, Label(SourceDir("//toolchain/"), "default")),
|
| scope_(&settings_) {
|
| + build_settings_.SetBuildDir(SourceDir("//out/Debug/"));
|
| +
|
| + settings_.set_toolchain_label(toolchain_.label());
|
| + settings_.set_is_default(true);
|
| }
|
|
|
| TestWithScope::~TestWithScope() {
|
|
|