Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Unified Diff: runtime/bin/BUILD.gn

Issue 2977513002: [Fuchsia] Routes timeline events to Fuchsia's tracing app (Closed)
Patch Set: Format Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/BUILD.gn ('k') | runtime/vm/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/BUILD.gn
diff --git a/runtime/bin/BUILD.gn b/runtime/bin/BUILD.gn
index 4d9ec19a196de318b672cdd215dbfe53b6bbe6a4..2e58fddbc4fab1775c77630ddf5fb66b4ccc62ed 100644
--- a/runtime/bin/BUILD.gn
+++ b/runtime/bin/BUILD.gn
@@ -642,6 +642,10 @@ template("dart_executable") {
deps += [ "//third_party/tcmalloc" ]
}
+ if (is_fuchsia) {
+ deps += [ "//apps/tracing/lib/trace" ]
+ }
+
sources = [
"error_exit.cc",
"error_exit.h",
@@ -885,6 +889,10 @@ executable("run_vm_tests") {
defines += [ "DART_USE_TCMALLOC" ]
}
+ if (is_fuchsia) {
+ deps += [ "//apps/tracing/lib/trace" ]
+ }
+
# The VM sources are already included in libdart, so we just want to add in
# the tests here.
vm_tests = rebase_path(vm_tests_list, ".", "../vm")
« no previous file with comments | « runtime/BUILD.gn ('k') | runtime/vm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698