Require commas between items in a GN list.
Fixing this issue exposed a race condition in .gni processing where an error parsing a file that another thread was waiting for wouldn't signal that other thread that the load was complete, so it would wait forever.
This patch separates out the loading from the signaling in the InputFileManager so we can't forget to do this.
BUG=368019
[email protected]
Review URL: https://codereview.chromium.org/258073004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@266976 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index f65b2cc..712a122d 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -16,7 +16,7 @@
"//build/gypi_to_gn.py",
[ rebase_path("skia_gn_files.gypi"),
"--replace=<(skia_include_path)=//third_party/skia/include",
- "--replace=<(skia_src_path)=//third_party/skia/src" ]
+ "--replace=<(skia_src_path)=//third_party/skia/src" ],
"scope",
[ "skia_gn_files.gypi" ])