linux: Add dummy implementation of node bindings.
This commit is contained in:
parent
e3d5b62000
commit
526aaecc52
3 changed files with 70 additions and 0 deletions
20
atom.gyp
20
atom.gyp
|
@ -177,6 +177,8 @@
|
||||||
'common/linux/application_info.cc',
|
'common/linux/application_info.cc',
|
||||||
'common/node_bindings.cc',
|
'common/node_bindings.cc',
|
||||||
'common/node_bindings.h',
|
'common/node_bindings.h',
|
||||||
|
'common/node_bindings_linux.cc',
|
||||||
|
'common/node_bindings_linux.h',
|
||||||
'common/node_bindings_mac.cc',
|
'common/node_bindings_mac.cc',
|
||||||
'common/node_bindings_mac.h',
|
'common/node_bindings_mac.h',
|
||||||
'common/node_bindings_win.cc',
|
'common/node_bindings_win.cc',
|
||||||
|
@ -325,6 +327,24 @@
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}], # OS=="win"
|
}], # OS=="win"
|
||||||
|
['OS=="linux"', {
|
||||||
|
'copies': [
|
||||||
|
{
|
||||||
|
'destination': '<(PRODUCT_DIR)',
|
||||||
|
'files': [
|
||||||
|
'<(libchromiumcontent_library_dir)/libchromiumcontent.so',
|
||||||
|
'<(libchromiumcontent_library_dir)/libffmpegsumo.so',
|
||||||
|
'<(libchromiumcontent_resources_dir)/content_shell.pak',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'destination': '<(PRODUCT_DIR)/resources/browser',
|
||||||
|
'files': [
|
||||||
|
'browser/default_app',
|
||||||
|
]
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}], # OS=="linux"
|
||||||
],
|
],
|
||||||
}, # target <(project_name)
|
}, # target <(project_name)
|
||||||
{
|
{
|
||||||
|
|
24
common/node_bindings_linux.cc
Normal file
24
common/node_bindings_linux.cc
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
// Copyright (c) 2014 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.
|
||||||
|
|
||||||
|
#include "common/node_bindings_linux.h"
|
||||||
|
|
||||||
|
namespace atom {
|
||||||
|
|
||||||
|
NodeBindingsLinux::NodeBindingsLinux(bool is_browser)
|
||||||
|
: NodeBindings(is_browser) {
|
||||||
|
}
|
||||||
|
|
||||||
|
NodeBindingsLinux::~NodeBindingsLinux() {
|
||||||
|
}
|
||||||
|
|
||||||
|
void NodeBindingsLinux::PollEvents() {
|
||||||
|
}
|
||||||
|
|
||||||
|
// static
|
||||||
|
NodeBindings* NodeBindings::Create(bool is_browser) {
|
||||||
|
return new NodeBindingsLinux(is_browser);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace at
|
26
common/node_bindings_linux.h
Normal file
26
common/node_bindings_linux.h
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
// Copyright (c) 2014 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.
|
||||||
|
|
||||||
|
#ifndef ATOM_COMMON_NODE_BINDINGS_LINUX_H_
|
||||||
|
#define ATOM_COMMON_NODE_BINDINGS_LINUX_H_
|
||||||
|
|
||||||
|
#include "base/compiler_specific.h"
|
||||||
|
#include "common/node_bindings.h"
|
||||||
|
|
||||||
|
namespace atom {
|
||||||
|
|
||||||
|
class NodeBindingsLinux : public NodeBindings {
|
||||||
|
public:
|
||||||
|
explicit NodeBindingsLinux(bool is_browser);
|
||||||
|
virtual ~NodeBindingsLinux();
|
||||||
|
|
||||||
|
private:
|
||||||
|
virtual void PollEvents() OVERRIDE;
|
||||||
|
|
||||||
|
DISALLOW_COPY_AND_ASSIGN(NodeBindingsLinux);
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace atom
|
||||||
|
|
||||||
|
#endif // ATOM_COMMON_NODE_BINDINGS_LINUX_H_
|
Loading…
Reference in a new issue