2013-04-14 07:36:48 +00: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 03:01:04 +00:00
|
|
|
// Multiply-included file, no traditional include guard.
|
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
// Used by atom_extensions.cc to declare a list of built-in modules of Atom.
|
|
|
|
|
|
|
|
NODE_EXT_LIST_START
|
|
|
|
|
2013-04-25 07:36:01 +00:00
|
|
|
// Module names start with `atom_browser_` can only be used by browser process.
|
2013-05-02 16:05:09 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_app)
|
2013-06-03 09:59:34 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_auto_updater)
|
2013-06-01 07:57:37 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_crash_reporter)
|
2013-05-03 13:03:26 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_dialog)
|
2013-04-23 04:18:07 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_ipc)
|
2013-05-06 12:27:09 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_menu)
|
2013-04-21 06:53:26 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_browser_window)
|
2013-04-14 07:36:48 +00:00
|
|
|
|
2013-04-25 07:36:01 +00:00
|
|
|
// Module names start with `atom_renderer_` can only be used by renderer
|
|
|
|
// process.
|
2013-04-23 04:18:07 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_renderer_ipc)
|
|
|
|
|
2013-04-25 07:36:01 +00:00
|
|
|
// Module names start with `atom_common_` can be used by both browser and
|
|
|
|
// renderer processes.
|
2013-04-30 08:10:25 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_clipboard)
|
2013-04-25 13:46:04 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_id_weak_map)
|
2013-04-29 13:57:05 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_shell)
|
2013-04-25 08:30:31 +00:00
|
|
|
NODE_EXT_LIST_ITEM(atom_common_v8_util)
|
2013-04-25 07:36:01 +00:00
|
|
|
|
2013-04-14 07:36:48 +00:00
|
|
|
NODE_EXT_LIST_END
|