@@ -12,11 +12,10 @@ to understand the source code better.
12
12
## Structure of source code
13
13
14
14
* ** atom** - Source code of atom-shell.
15
- * ** app** - Contains system entry code, this is the most basic level of the
16
- program.
15
+ * ** app** - System entry code.
17
16
* ** browser** - The frontend including the main window, UI, and all browser
18
17
side things. This talks to the renderer to manage web pages.
19
- * ** lib** - Javascript part of browser initialization code.
18
+ * ** lib** - Javascript part of browser sidde initialization code.
20
19
* ** ui** - Implementation of UI stuff for different platforms.
21
20
* ** cocoa** - Cocoa specific source code.
22
21
* ** gtk** - GTK+ specific source code.
@@ -26,31 +25,38 @@ to understand the source code better.
26
25
* ** api** - The implementation of browser side APIs.
27
26
* ** lib** - Javascript part of the API implementation.
28
27
* ** net** - Network related code.
29
- * ** renderer** - Code that runs in renderer.
28
+ * ** mac** - Mac specific Objective-C source code.
29
+ * ** resources** - Icons, platform-dependent files, etc.
30
+ * ** renderer** - Code that runs in renderer process.
30
31
* ** lib** - Javascript part of renderer initialization code.
31
32
* ** api** - The implementation of renderer side APIs.
32
33
* ** lib** - Javascript part of the API implementation.
33
34
* ** common** - Code that used by both browser and renderer, including some
34
- utility functions and code to integrate node's message loop into Chromium's message loop.
35
+ utility functions and code to integrate node's message loop into Chromium's
36
+ message loop.
35
37
* ** lib** - Common Javascript initialization code.
36
- * ** v8** - Utility functions for using V8 and node APIs.
37
38
* ** api** - The implementation of common APIs, and foundations of
38
39
atom-shell's built-in modules.
39
40
* ** lib** - Javascript part of the API implementation.
40
- * ** spec** - Automatic tests.
41
- * ** script** - Scripts for building atom-shell.
42
- * ** chrome** - Source code modified from Chromium's chrome component.
41
+ * ** chrome** - Source code modified from Chromium's ` chrome ` component.
42
+ * ** docs** - Documentations.
43
+ * ** spec** - Automatic tests.
44
+ * ** atom.gyp** - Building rules of atom-shell.
45
+ * ** common.gypi** - Compiler specific settings and building rules for other
46
+ components like ` node ` and ` breakpad ` .
43
47
44
48
## Structure of other directories
45
49
46
- * ** vendor** - Build dependencies.
47
- * ** tools** - Helper scripts used by gyp files.
48
- * ** node_modules** - Third party node modules used for building or running
49
- specs.
50
- * ** out** - Output directory for ` ninja ` .
50
+ * ** script** - Scripts used for development purpose like building, packaging,
51
+ testing, etc.
52
+ * ** tools** - Helper scripts used by gyp files, unlike ` script ` , scripts put
53
+ here should never be invoked by users directly.
54
+ * ** vendor** - Source code of third party dependencies, we didn't use
55
+ ` third_party ` as name because it would confuse with the same directory in
56
+ Chromium's source code tree.
57
+ * ** node_modules** - Third party node modules used for building.
58
+ * ** out** - Temporary output directory of ` ninja ` .
51
59
* ** dist** - Temporary directory created by ` script/create-dist.py ` script
52
60
when creating an distribution.
53
- * ** node** - Downloaded node binary, it's built from
54
- https://github.com/atom/node/tree/chromium-v8 .
55
- * ** frameworks** - Downloaded third-party binaries of frameworks (only on
56
- Mac).
61
+ * ** frameworks** - Downloaded binaries of third-party frameworks, binaries
62
+ here are usually either closed source or hard to be built via ` gyp ` .
0 commit comments