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

Unified Diff: runtime/vm/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/bin/BUILD.gn ('k') | runtime/vm/timeline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/BUILD.gn
diff --git a/runtime/vm/BUILD.gn b/runtime/vm/BUILD.gn
index b4bdf40303985d5f15e08d57cd3ed518463dd5bd..3a79bd5d0a62a155ac89658e6255e44f15fded07 100644
--- a/runtime/vm/BUILD.gn
+++ b/runtime/vm/BUILD.gn
@@ -35,6 +35,9 @@ static_library("libdart_platform") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
@@ -52,6 +55,9 @@ source_set("libdart_vm_jit") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
set_sources_assignment_filter([
@@ -70,6 +76,9 @@ source_set("libdart_vm_precompiled_runtime") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
set_sources_assignment_filter([
@@ -88,6 +97,9 @@ source_set("libdart_vm_nosnapshot") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
set_sources_assignment_filter([
@@ -107,6 +119,9 @@ source_set("libdart_vm_nosnapshot_with_precompiler") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
set_sources_assignment_filter([
@@ -125,6 +140,9 @@ source_set("libdart_vm_with_precompiler") {
]
if (is_fuchsia) {
configs -= [ "//build/config:symbol_visibility_hidden" ]
+ deps = [
+ "//apps/tracing/lib/trace",
+ ]
}
public_configs = [ ":libdart_vm_config" ]
set_sources_assignment_filter([
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/vm/timeline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698