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

Unified Diff: build/toolchain/mac/BUILD.gn

Issue 1208963003: Move GN obj files to target-specific dirs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: \ Created 5 years, 5 months 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
« no previous file with comments | « build/toolchain/gcc_toolchain.gni ('k') | build/toolchain/win/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/toolchain/mac/BUILD.gn
diff --git a/build/toolchain/mac/BUILD.gn b/build/toolchain/mac/BUILD.gn
index da4ca0532e5282974bfbfdf75282e903e545ced2..d16bb23b72a918d302fd7e7b5a12f6c2715cc24e 100644
--- a/build/toolchain/mac/BUILD.gn
+++ b/build/toolchain/mac/BUILD.gn
@@ -54,7 +54,7 @@ template("mac_toolchain") {
depsformat = "gcc"
description = "CC {{output}}"
outputs = [
- "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
+ "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
]
}
@@ -64,7 +64,7 @@ template("mac_toolchain") {
depsformat = "gcc"
description = "CXX {{output}}"
outputs = [
- "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
+ "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
]
}
@@ -75,7 +75,7 @@ template("mac_toolchain") {
depsformat = "gcc"
description = "ASM {{output}}"
outputs = [
- "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
+ "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
]
}
@@ -85,7 +85,7 @@ template("mac_toolchain") {
depsformat = "gcc"
description = "OBJC {{output}}"
outputs = [
- "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
+ "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
]
}
@@ -95,7 +95,7 @@ template("mac_toolchain") {
depsformat = "gcc"
description = "OBJCXX {{output}}"
outputs = [
- "{{source_out_dir}}/{{target_output_name}}.{{source_name_part}}.o",
+ "{{target_out_dir}}/{{target_output_name}}/{{source_name_part}}.o",
]
}
« no previous file with comments | « build/toolchain/gcc_toolchain.gni ('k') | build/toolchain/win/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698