1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Rename deno.cc to binding.cc and other renames (#339)

Fixes #336
This commit is contained in:
Faris Amali Alis 2018-07-06 15:19:19 +08:00 committed by Ryan Dahl
parent 1f6f2f5cae
commit bfe08aa462
10 changed files with 20 additions and 21 deletions

View file

@ -68,11 +68,11 @@ static_library("libdeno") {
v8_source_set("deno_nosnapshot") { v8_source_set("deno_nosnapshot") {
sources = [ sources = [
"src/deno.cc", "src/binding.cc",
"src/deno_internal.h", "src/internal.h",
"src/file_util.cc", "src/file_util.cc",
"src/file_util.h", "src/file_util.h",
"src/include/deno.h", "src/deno.h",
] ]
deps = [ deps = [
"third_party/v8:v8_monolith", "third_party/v8:v8_monolith",

View file

@ -28,8 +28,8 @@ IN THE SOFTWARE.
#include "third_party/v8/include/v8.h" #include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h" #include "third_party/v8/src/base/logging.h"
#include "./deno_internal.h" #include "internal.h"
#include "include/deno.h" #include "deno.h"
namespace deno { namespace deno {

View file

@ -1,7 +1,7 @@
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> // Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License. // All rights reserved. MIT License.
#ifndef INCLUDE_DENO_H_ #ifndef DENO_H_
#define INCLUDE_DENO_H_ #define DENO_H_
// Neither Rust nor Go support calling directly into C++ functions, therefore // Neither Rust nor Go support calling directly into C++ functions, therefore
// the public interface to libdeno is done in C. // the public interface to libdeno is done in C.
#ifdef __cplusplus #ifdef __cplusplus
@ -50,4 +50,4 @@ void deno_terminate_execution(Deno* d);
#ifdef __cplusplus #ifdef __cplusplus
} // extern "C" } // extern "C"
#endif #endif
#endif // INCLUDE_DENO_H_ #endif // DENO_H_

View file

@ -8,8 +8,8 @@
#include "third_party/v8/include/v8.h" #include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h" #include "third_party/v8/src/base/logging.h"
#include "./deno_internal.h" #include "internal.h"
#include "include/deno.h" #include "deno.h"
#ifdef DENO_MOCK_RUNTIME #ifdef DENO_MOCK_RUNTIME
#include "snapshot_mock_runtime.cc" #include "snapshot_mock_runtime.cc"

View file

@ -1,10 +1,10 @@
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> // Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License. // All rights reserved. MIT License.
#ifndef DENO_INTERNAL_H_ #ifndef INTERNAL_H_
#define DENO_INTERNAL_H_ #define INTERNAL_H_
#include <string> #include <string>
#include "include/deno.h" #include "deno.h"
#include "third_party/v8/include/v8.h" #include "third_party/v8/include/v8.h"
extern "C" { extern "C" {
@ -41,4 +41,4 @@ void InitializeContext(v8::Isolate* isolate, v8::Local<v8::Context> context,
void AddIsolate(Deno* d, v8::Isolate* isolate); void AddIsolate(Deno* d, v8::Isolate* isolate);
} // namespace deno } // namespace deno
#endif // DENO_INTERNAL_H_ #endif // INTERNAL_H_

View file

@ -11,7 +11,7 @@
#endif #endif
#include "flatbuffers/flatbuffers.h" #include "flatbuffers/flatbuffers.h"
#include "include/deno.h" #include "deno.h"
#include "src/msg_generated.h" #include "src/msg_generated.h"
#include "third_party/v8/src/base/logging.h" #include "third_party/v8/src/base/logging.h"

View file

@ -2,7 +2,7 @@
// All rights reserved. MIT License. // All rights reserved. MIT License.
#include "testing/gtest/include/gtest/gtest.h" #include "testing/gtest/include/gtest/gtest.h"
#include "include/deno.h" #include "deno.h"
TEST(MockRuntimeTest, InitializesCorrectly) { TEST(MockRuntimeTest, InitializesCorrectly) {
Deno* d = deno_new(nullptr, nullptr); Deno* d = deno_new(nullptr, nullptr);

View file

@ -1,9 +1,9 @@
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org> // Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
// All rights reserved. MIT License. // All rights reserved. MIT License.
// Hint: --trace_serializer is a useful debugging flag. // Hint: --trace_serializer is a useful debugging flag.
#include "deno_internal.h" #include "internal.h"
#include "file_util.h" #include "file_util.h"
#include "include/deno.h" #include "deno.h"
#include "third_party/v8/include/v8.h" #include "third_party/v8/include/v8.h"
#include "third_party/v8/src/base/logging.h" #include "third_party/v8/src/base/logging.h"

View file

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
set -e set -e
cd `dirname "$0"`/.. cd `dirname "$0"`/..
clang-format -i -style Google src/*.cc src/*.h src/include/*.h clang-format -i -style Google src/*.cc src/*.h
gn format BUILD.gn gn format BUILD.gn
gn format deno.gni gn format deno.gni

View file

@ -6,7 +6,6 @@ cd `dirname "$0"`/..
--filter=-build/include_subdir \ --filter=-build/include_subdir \
--repository=src \ --repository=src \
src/*.cc \ src/*.cc \
src/*.h \ src/*.h
src/include/*.h
node third_party/node_modules/.bin/tslint -p . \ node third_party/node_modules/.bin/tslint -p . \
--exclude js/msg_generated.ts --exclude js/msg_generated.ts