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

Unified Diff: runtime/bin/vmservice_impl.cc

Issue 2964133002: Exclude Observatory assets from PRODUCT build dart, dart_precompiled_runtime (Closed)
Patch Set: Addressed comments 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 | « runtime/bin/BUILD.gn ('k') | runtime/runtime_args.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/vmservice_impl.cc
diff --git a/runtime/bin/vmservice_impl.cc b/runtime/bin/vmservice_impl.cc
index 6a5cfccf7d16d8174165df0e41646308f34f50be..82968c3ae45ff5c33abeddf3e15eddbc3e57d3b0 100644
--- a/runtime/bin/vmservice_impl.cc
+++ b/runtime/bin/vmservice_impl.cc
@@ -41,7 +41,11 @@ struct ResourcesEntry {
int length_;
};
+#if defined(DART_PRECOMPILED_RUNTIME)
+ResourcesEntry __service_bin_resources_[] = {{NULL, NULL, 0}};
+#else
extern ResourcesEntry __service_bin_resources_[];
+#endif
class Resources {
public:
« no previous file with comments | « runtime/bin/BUILD.gn ('k') | runtime/runtime_args.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698