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

Unified Diff: tools/gn/docs/language.md

Issue 1335313003: Replace instances of datadeps --> data_deps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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
Index: tools/gn/docs/language.md
diff --git a/tools/gn/docs/language.md b/tools/gn/docs/language.md
index 3aabd7902325507d5a2582c3da2296e862a61d7c..9499bbb409ef74b066ea151a114ce7ea948b9d8c 100644
--- a/tools/gn/docs/language.md
+++ b/tools/gn/docs/language.md
@@ -518,7 +518,7 @@ if (target_cpu == "x64") {
```
If a 64-bit target wants to depend on a 32-bit binary, it would specify
-a dependency using `datadeps` (data deps are like deps that are only
+a dependency using `data_deps` (data deps are like deps that are only
needed at runtime and aren't linked, since you can't link a 32-bit and a
64-bit library).
@@ -527,7 +527,7 @@ executable("my_program") {
...
if (target_cpu == "x64") {
# The 64-bit build needs this 32-bit helper.
- datadeps = [ ":helper(//toolchains:32)" ]
+ data_deps = [ ":helper(//toolchains:32)" ]
}
}

Powered by Google App Engine
This is Rietveld 408576698