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

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: make formatter recognize both datadeps and data_deps 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
« no previous file with comments | « tools/gn/command_format.cc ('k') | tools/gn/docs/reference.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/docs/language.md
diff --git a/tools/gn/docs/language.md b/tools/gn/docs/language.md
index 080fe49a4d9f0fe99bc68983a128cff60bf5ca46..35ef4ae078d1af0d844f3a86521a05f8ea216ef7 100644
--- a/tools/gn/docs/language.md
+++ b/tools/gn/docs/language.md
@@ -517,7 +517,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).
@@ -526,7 +526,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)" ]
}
}
« no previous file with comments | « tools/gn/command_format.cc ('k') | tools/gn/docs/reference.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698