Index: tools/gn/docs/language.md |
diff --git a/tools/gn/docs/language.md b/tools/gn/docs/language.md |
index 35ef4ae078d1af0d844f3a86521a05f8ea216ef7..6f0b467352a81d8c0956d598bc3ab3d6e6b281a1 100644 |
--- a/tools/gn/docs/language.md |
+++ b/tools/gn/docs/language.md |
@@ -376,10 +376,11 @@ more help) are: |
* `group`: A virtual dependency node that refers to one or more other |
targets. |
* `shared_library`: A .dll or .so. |
+ * `loadable_module`: An .so loadable only at runtime. |
brettw
2015/10/13 23:13:32
Can you write ".dll or .so"
Bons
2015/10/13 23:30:52
Done.
|
* `source_set`: A lightweight virtual static library (usually |
preferrable over a real static library since it will build faster). |
* `static_library`: A .lib or .a file (normally you'll want a |
- source\_set instead). |
+ `source_set` instead). |
You can extend this to make custom target types using templates (see below). |