diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-12 13:41:19 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-13 14:38:50 -0400 |
commit | 2c30a25568b16c5f7cb288a14dbb0a2edf08cd5c (patch) | |
tree | 5ea10ac5d45edf46141dd43594a178902f84a753 /BUILD.gn | |
parent | 936c8f6e4c18aa9355c01cbf7ac2834d9ea14e45 (diff) |
Move C++ test main function to its own file.
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -72,13 +72,14 @@ executable("deno_cc_nosnapshot") { configs += [ ":deno_config" ] } -executable("mock_runtime_test") { +executable("test_cc") { testonly = true sources = [ "src/file_util_test.cc", "src/flatbuffer_builder_test.cc", "src/from_snapshot.cc", "src/mock_runtime_test.cc", + "src/test.cc", ] deps = [ ":create_snapshot_mock_runtime", |