You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: node_modules/node-gyp/gyp/docs/LanguageSpecification.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -157,7 +157,7 @@ have structural meaning for target definitions:
157
157
|`all_dependent_settings`| A dictionary of settings to be applied to all dependents of the target, transitively. This includes direct dependents and the entire set of their dependents, and so on. This section may contain anything found within a `target` dictionary, except `configurations`, `target_name`, and `type` sections. Compare `direct_dependent_settings` and `link_settings`. |
158
158
|`configurations`| A list of dictionaries defining build configurations for the target. See the "Configurations" section below. |
159
159
|`copies`| A list of copy actions to perform. See the "Copies" section below. |
160
-
|`defines`| A list of preprocesor definitions to be passed on the command line to the C/C++ compiler (via `-D` or `/D` options). |
160
+
|`defines`| A list of preprocessor definitions to be passed on the command line to the C/C++ compiler (via `-D` or `/D` options). |
161
161
|`dependencies`| A list of targets on which this target depends. Targets in other `.gyp` files are specified as `../path/to/other.gyp:target_we_want`. |
162
162
|`direct_dependent_settings`| A dictionary of settings to be applied to other targets that depend on this target. These settings will only be applied to direct dependents. This section may contain anything found within a `target` dictionary, except `configurations`, `target_name`, and `type` sections. Compare with `all_dependent_settings` and `link_settings`. |
163
163
|`include_dirs`| A list of include directories to be passed on the command line to the C/C++ compiler (via `-I` or `/I` options). |
@@ -208,8 +208,8 @@ Configuration dictionaries may also contain these elements:
208
208
209
209
Conditionals may appear within any dictionary in a `.gyp` file. There
210
210
are two tpes of conditionals, which differ only in the timing of their
211
-
processing. `conditons` sections are processed shortly after loading
212
-
`.gyp` files, and `target_conditons` sections are processed after all
211
+
processing. `conditions` sections are processed shortly after loading
212
+
`.gyp` files, and `target_conditions` sections are processed after all
213
213
dependencies have been computed.
214
214
215
215
A conditional section is introduced with a `conditions` or
0 commit comments