2013-04-14 15:36:48 +08:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-04-21 11:01:04 +08:00
|
|
|
// Multiply-included file, no traditional include guard.
|
|
|
|
|
2013-04-14 15:36:48 +08:00
|
|
|
// Used by atom_extensions.cc to declare a list of built-in modules of Atom.
|
|
|
|
|
|
|
|
NODE_EXT_LIST_START
|
|
|
|
|
2013-04-25 15:36:01 +08:00
|
|
|
// Module names start with `atom_browser_` can only be used by browser process.
|
2013-05-03 00:05:09 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_app)
|
2013-06-03 17:59:34 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_auto_updater)
|
2013-06-01 15:57:37 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_crash_reporter)
|
2013-05-03 21:03:26 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_dialog)
|
2013-04-23 12:18:07 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_ipc)
|
2013-05-06 20:27:09 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_menu)
|
2013-08-03 15:58:59 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_power_monitor)
|
2013-08-24 15:26:10 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_protocol)
|
2013-04-21 14:53:26 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_window)
|
2013-04-14 15:36:48 +08:00
|
|
|
|
2013-04-25 15:36:01 +08:00
|
|
|
// Module names start with `atom_renderer_` can only be used by renderer
|
|
|
|
// process.
|
2013-04-23 12:18:07 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_renderer_ipc)
|
|
|
|
|
2013-04-25 15:36:01 +08:00
|
|
|
// Module names start with `atom_common_` can be used by both browser and
|
|
|
|
// renderer processes.
|
2013-04-30 16:10:25 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_clipboard)
|
2013-04-25 21:46:04 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_id_weak_map)
|
2013-04-29 21:57:05 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_shell)
|
2013-04-25 16:30:31 +08:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_v8_util)
|
2013-04-25 15:36:01 +08:00
|
|
|
|
2013-04-14 15:36:48 +08:00
|
|
|
NODE_EXT_LIST_END
|