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

Unified Diff: docs/InputFormatReference.md

Issue 1183733003: Correct brances in input format reference doc. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: docs/InputFormatReference.md
diff --git a/docs/InputFormatReference.md b/docs/InputFormatReference.md
index 9df8650350106c813029c792b4dd35a314085fa2..c2556e6e81712f0c429d678ca1571872583fcf39 100644
--- a/docs/InputFormatReference.md
+++ b/docs/InputFormatReference.md
@@ -929,14 +929,14 @@ platform-specific files.
'platform_util_mac.mm',
],
'sources/': [
- [['exclude', '_win\\.cc$']],
+ ['exclude', '_win\\.cc$'],
],
'conditions': [
['OS!="linux"', {'sources/': [['exclude', '_linux\\.cc$']]}],
['OS!="mac"', {'sources/': [['exclude', '_mac\\.cc|mm?$']]}],
['OS=="win"', {'sources/': [
- [['include', '_win\\.cc$']],
- [['exclude', '_posix\\.cc$']],
+ ['include', '_win\\.cc$'],
+ ['exclude', '_posix\\.cc$'],
]}],
],
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698