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

Unified Diff: tools/gn/build_settings.cc

Issue 630223002: gn: Support build directories outside the source tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated patch set Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: tools/gn/build_settings.cc
diff --git a/tools/gn/build_settings.cc b/tools/gn/build_settings.cc
index 37d50f55ecb660142083abcaba2d5c36cb6017c8..3ffb8283ef0acd42eed262c0caa48f067a242df8 100644
--- a/tools/gn/build_settings.cc
+++ b/tools/gn/build_settings.cc
@@ -17,7 +17,6 @@ BuildSettings::BuildSettings(const BuildSettings& other)
python_path_(other.python_path_),
build_config_file_(other.build_config_file_),
build_dir_(other.build_dir_),
- build_to_source_dir_string_(other.build_to_source_dir_string_),
build_args_(other.build_args_) {
}
@@ -36,7 +35,6 @@ void BuildSettings::SetSecondarySourcePath(const SourceDir& d) {
void BuildSettings::SetBuildDir(const SourceDir& d) {
build_dir_ = d;
- build_to_source_dir_string_ = InvertDir(d);
}
base::FilePath BuildSettings::GetFullPath(const SourceFile& file) const {

Powered by Google App Engine
This is Rietveld 408576698