Commit 524e60fb authored by David 'Digit' Turner's avatar David 'Digit' Turner Committed by Commit Bot

Fix typo in gn documentation

Also updates an improper usage in a BUILD.gn file.

R=dpranke
BUG=None

Change-Id: I2d7d96f29165442e8642991a6db942b17b6c5012
Reviewed-on: https://chromium-review.googlesource.com/1069745Reviewed-by: default avatarDavid Turner <digit@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Commit-Queue: David Turner <digit@chromium.org>
Cr-Commit-Position: refs/heads/master@{#561031}
parent 46f864ed
......@@ -49,7 +49,7 @@ if (is_android) {
#
template("crazy_linker_library") {
source_set(target_name) {
forward_variables_from(invoker, [ "*" ])
forward_variables_from(invoker, "*")
sources = [
"src/include/crazy_linker.h",
"src/src/crazy_linker_api.cpp",
......@@ -110,7 +110,7 @@ if (is_android) {
include_dirs = [ "src/src" ]
if (defined(invoker.unit_tests) && invoker.unit_tests) {
if (defined(unit_tests) && unit_tests) {
sources += [
"src/src/crazy_linker_system_mock.cpp",
"src/src/crazy_linker_system_mock.h",
......
......@@ -2676,7 +2676,7 @@
template("shared_library") {
shared_library(shlib) {
forward_variables_from(invoker, [ "*" ])
forward_variables_from(invoker, "*")
...
}
}
......
......@@ -90,7 +90,7 @@ Overriding builtin targets
template("shared_library") {
shared_library(shlib) {
forward_variables_from(invoker, [ "*" ])
forward_variables_from(invoker, "*")
...
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment