summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-07-13Move C++ test main function to its own file.Ryan Dahl
2018-07-13Create .gitattributesKompwu
2018-07-12Add color to rustc output (except windows)Ryan Dahl
2018-07-12Move buffers between V8 and nativeBert Belder
* send()/recv() now operate on TypedArrays rather than ArrayBuffers. * Remove a copy (through ArrayBuffer.slice()) from the send path. * Remove a copy (through v8::ArrayBuffer::New()) from the return path. * After moving a buffer from JS to native, the ArrayBuffer object and it's views are made inaccessible ('neutered'). * `struct deno_buf` now holds two [ptr, length] tuples, one for the actual memory allocation, and one for the logical data contained therein. This is necessary because flatbuffers fills it's buffer bottom-up, so the serialized blob doesn't start at beginning of the buffer, but somewhere in the middle.
2018-07-12Remove channel argument from Rust message callbackBert Belder
This makes `deno` not crash any more.
2018-07-12Add nosnapshot executables for faster incremental builds (#359)Faris Amali Alis
Fixes #311.
2018-07-10Remove -f option from rustfmt. (#356)Ryan Dahl
And add support for RUSTFMT_FLAGS (Some people might need -f option)
2018-07-10windows: add .exe extension to executable produced by rust_test templateBert Belder
2018-07-10Add rust url crate. (#355)Ryan Dahl
2018-07-09Move libc build def to //build_extra/rustRyan Dahl
This is preperation for adding many more third_party crates.
2018-07-09Fix rust depfile problem.Ryan Dahl
Fixes #316.
2018-07-09chore: use local prettierYoshiya Hinosawa
2018-07-09Regenerate msg_generated.tsBert Belder
I forgot to commit this file in 8a17db8.
2018-07-08Add 'command id' field to messagesBert Belder
This allows for correlating response messages to the command message that caused them.
2018-07-08tools: fix windowsBert Belder
This fixes most things, but format.py doesn't work yet, because yapf is broken due to some depot_tools shimming python.
2018-07-08Clean up tools/Ryan Dahl
- Factor out tools/util.py - Move js/*.py to tools. - Rewrite tools/format.sh in python. - Run lint first in travis.
2018-07-08tools: generate third_party dir and symlinks from the script. (#346)Yoshiya Hinosawa
Everyone needs to run ./tools/build_third_party.py after this commit.
2018-07-08Rewrite tools/lint.sh in python (#343)Hao Li
2018-07-07Move flatbuffers gn files to //build_extra/flatbuffersRyan Dahl
Fixes #342.
2018-07-07Merge flatbuffer.gni and ts_flatbuffer.gniRyan Dahl
2018-07-07Fix command in READMERyan Dahl
2018-07-07Add rust_test to gn build, with working example.Ryan Dahl
2018-07-06Remove channel parameter from deno_send/recv.Ryan Dahl
2018-07-06Use C++ to do flatbuffer parsing.Ryan Dahl
- Port protobuf messages to flatbuffers. - Demo linking to rust from C++ executable. - Start using the prototype TS libraries.
2018-07-06Run tools/format.shRyan Dahl
2018-07-06Import ts file from prototype without changeRyan Dahl
From commit 559453cf6cc88283bcf8fdeccd387458f5c63165 Excluding v8worker.d.ts, main.ts, and deno.d.ts. Updates tslint.json to be original settings.
2018-07-06Better c++ error handlingRyan Dahl
2018-07-06Improve READMERyan Dahl
2018-07-06s/rust_deps/extern/gRyan Dahl
2018-07-06Further gn/rust cleanupsRyan Dahl
Move rust.gni and deno.gni into build_extra/ Removes rust_library which was only an action. This instead defines rust_component, which is an action plus a gn "component" target to expose the resulting object file. This simplifies link code in rust.gni. Support rust modules that can be linked into C++.
2018-07-06Rename deno.cc to binding.cc and other renames (#339)Faris Amali Alis
Fixes #336
2018-07-06chore: add symlink //third_party/yarn.lockYoshiya Hinosawa
2018-07-06chore: reorganize symlinksYoshiya Hinosawa
resolves #332
2018-07-05chore: clean up build_third_party.pyYoshiya Hinosawa
2018-07-05Rename mock_main to deno_ccRyan Dahl
2018-07-04Replace protobufs with flatbuffersRyan Dahl
2018-07-04Change node_modules cache dir.Ryan Dahl
2018-07-04Fix msg.pb.h pathBert Belder
2018-07-04Add tools/build_third_party.py (#328)Yoshiya Hinosawa
Fixes #312
2018-07-04Separate deno.gni and rust.gni and clean up.Ryan Dahl
Put rust depfile in target_out_dir because the depfile isn't in the outputs, the gen directory doesn't get created. Prefix rlib files with lib.
2018-07-04removed now irrelevant kKeep segfault commentMike Reinstein
2018-07-04Rename .gclientRyan Dahl
so it doesn't accidentally get run in root dir. Ref #322
2018-07-04deno.gni script locations absoluteRyan Dahl
2018-07-04switch from kClear to kKeepMike Reinstein
2018-07-04upgrade v8 to 6.9.297. remove IIFE workaround for bug in v8 snapshot serializerMike Reinstein
2018-07-03Switch back to recv/send instead of pub/sub for low-level API.Ryan Dahl
2018-07-03Rustify Deno APIRobby Madruga
2018-07-03Remove BaseMsg from msg.protoRyan Dahl
2018-07-03Call into JS from rustRyan Dahl
2018-07-03Adjust roadmap security text. (#320)Ryan Dahl