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

Unified Diff: runtime/BUILD.gn

Issue 2946123002: [fuchsia] Make symbols in the Dart VM visible, so they are available to the profiler. (Closed)
Patch Set: . Created 3 years, 6 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 | « no previous file | runtime/bin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/BUILD.gn
diff --git a/runtime/BUILD.gn b/runtime/BUILD.gn
index caf6496fac155570cdad0e10e9541b9245e165e1..1bac55a1ae1dd17f645fd86c2a44ef6a45f1ac39 100644
--- a/runtime/BUILD.gn
+++ b/runtime/BUILD.gn
@@ -205,6 +205,9 @@ template("libdart_library") {
":dart_config",
":dart_maybe_product_config",
] + extra_configs
+ if (is_fuchsia) {
+ configs -= [ "//build/config:symbol_visibility_hidden" ]
+ }
deps = [
"vm:libdart_platform",
"third_party/double-conversion/src:libdouble_conversion",
@@ -312,6 +315,9 @@ executable("libdart_dependency_helper") {
":dart_config",
":dart_maybe_product_config",
]
+ if (is_fuchsia) {
+ configs -= [ "//build/config:symbol_visibility_hidden" ]
+ }
deps = [
"third_party/double-conversion/src:libdouble_conversion",
"vm:libdart_lib_jit",
« no previous file with comments | « no previous file | runtime/bin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698