summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2018-08-21Expose deno.exit() and add test.Ryan Dahl
2018-08-20Enable http server for tests.Ryan Dahl
2018-08-18Rename :all target to :defaultRyan Dahl
2018-08-18build: don't clobber rust depfile mtime when fixing its pathsBert Belder
This avoids ninja unnecessarily rebuilding rust targets. Add a check for problems like these to be run on appveyor.
2018-08-17Add yarn.lock to third_partyRyan Dahl
Prevents upgrades with running tools/sync_third_party.py
2018-08-17chore: download clang-format from google storageYoshiya Hinosawa
2018-08-17chore: format files in tests/Yoshiya Hinosawa
2018-08-17import sys since sys.exit(1) usedmervynzhang
2018-08-10Support wildcard matching of output in testsKitson Kelly
2018-08-09Adds js/unit_tests.ts (#448)Ryan Dahl
2018-08-08Remove RUSTFMT_FLAGSRyan Dahl
2018-08-08Change rustfmt flags. For v0.8.2.Ryan Dahl
2018-08-08Print output even when test failed.Ryan Dahl
2018-08-08Remove yarn.lockRyan Dahl
Fixes #393.
2018-08-03Improve rust build docsRyan Dahl
2018-08-02Add 005_more_imports.tsRyan Dahl
And run check_output_test in order.
2018-08-02util: make symlink() work on older Windows versionsBert Belder
2018-08-02tools/setup: avoid running `gn gen` twice in the same output directoryBert Belder
2018-08-02tools: fix `tools/clang` symlink on startupBert Belder
2018-07-29Install sysroot on linux.Ryan Dahl
2018-07-29Rename run_hooks.py to setup.pyRyan Dahl
Moves 'gn gen' into setup.py Make tools/build.py more ergonomic.
2018-07-27Ignore any generated TypeScript filesKitson Kelly
2018-07-26Simplify run_rustc.py output.Ryan Dahl
2018-07-25Remove msg_generated hack (#409)Kitson Kelly
2018-07-25Clean up and fix toolsBert Belder
* Make sync_third_party work in general * Un-break build.py and run_hooks.py on windows * Partially fix format.py on windows * Reduce code duplication between run_hooks and sync_third_party
2018-07-24Add tools/build.py (#398)Ryan Dahl
To allow better tab completion for ./tools/build.py mv build_third_party.py sync_third_party.py
2018-07-24Remove handlers crate target.Ryan Dahl
- Add build scripts for Rust flatbuffers. - Rewrites some reply.cc methods in Rust. - Changes some struct elements to table in msg.fbs (rust flatbuffers lacks support currently) - Renames handlers_test to test_rs. - This reorg is needed to make progress on the code cache handler.
2018-07-24Fix recursive globbing in tools/format.pyRyan Dahl
And use third_party/depot_tools/gn.
2018-07-22Make check_output_test.py tolerate CRLF line endings in test outputBert Belder
2018-07-21Add tools/test.py test runner. (#384)Ryan Dahl
2018-07-21Fix symlink creation on windowsBert Belder
2018-07-21Add deno_third_party as git submodule.Ryan Dahl
2018-07-20Use 2 space indent.Ryan Dahl
Apologies for the churn, but my screen is small. rustfmt assumes big monitors.
2018-07-20Wrap rust at 80 columns.Ryan Dahl
2018-07-19Link rust_test targets with external linker, fix handlers_test linkageBert Belder
2018-07-18Use Cargo to install rust deps into //third_party/rust_crates (#383)robbym
2018-07-18Reduce unnecessary build output.Ryan Dahl
2018-07-13gclient sync should be shallowRyan Dahl
2018-07-10Remove -f option from rustfmt. (#356)Ryan Dahl
And add support for RUSTFMT_FLAGS (Some people might need -f option)
2018-07-09Fix rust depfile problem.Ryan Dahl
Fixes #316.
2018-07-09chore: use local prettierYoshiya Hinosawa
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-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-05chore: clean up build_third_party.pyYoshiya Hinosawa
2018-07-04Replace protobufs with flatbuffersRyan Dahl
2018-07-04Add tools/build_third_party.py (#328)Yoshiya Hinosawa
Fixes #312