Skip to content

Commit 9b9cfcf

Browse files
committed
📝 Update source code structure.
1 parent 8a8048a commit 9b9cfcf

File tree

1 file changed

+24
-18
lines changed

1 file changed

+24
-18
lines changed

docs/development/source-code-directory-structure.md

+24-18
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ to understand the source code better.
1212
## Structure of source code
1313

1414
* **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.
1716
* **browser** - The frontend including the main window, UI, and all browser
1817
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.
2019
* **ui** - Implementation of UI stuff for different platforms.
2120
* **cocoa** - Cocoa specific source code.
2221
* **gtk** - GTK+ specific source code.
@@ -26,31 +25,38 @@ to understand the source code better.
2625
* **api** - The implementation of browser side APIs.
2726
* **lib** - Javascript part of the API implementation.
2827
* **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.
3031
* **lib** - Javascript part of renderer initialization code.
3132
* **api** - The implementation of renderer side APIs.
3233
* **lib** - Javascript part of the API implementation.
3334
* **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.
3537
* **lib** - Common Javascript initialization code.
36-
* **v8** - Utility functions for using V8 and node APIs.
3738
* **api** - The implementation of common APIs, and foundations of
3839
atom-shell's built-in modules.
3940
* **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`.
4347

4448
## Structure of other directories
4549

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`.
5159
* **dist** - Temporary directory created by `script/create-dist.py` script
5260
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

Comments
 (0)