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

Unified Diff: runtime/vm/BUILD.gn

Issue 2957843002: Add gdb helper functions for creating a handle and using ToCString with RawObjects. (Closed)
Patch Set: sort 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/lib/stacktrace.cc ('k') | runtime/vm/gdb_helpers.cc » ('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 3af9130a330bcd596c05a8e98bfac2216d645f94..b4bdf40303985d5f15e08d57cd3ed518463dd5bd 100644
--- a/runtime/vm/BUILD.gn
+++ b/runtime/vm/BUILD.gn
@@ -45,7 +45,7 @@ static_library("libdart_platform") {
vm_sources_list = processed_gypis.vm_sources
-static_library("libdart_vm_jit") {
+source_set("libdart_vm_jit") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -62,7 +62,7 @@ static_library("libdart_vm_jit") {
include_dirs = [ ".." ]
}
-static_library("libdart_vm_precompiled_runtime") {
+source_set("libdart_vm_precompiled_runtime") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -80,7 +80,7 @@ static_library("libdart_vm_precompiled_runtime") {
include_dirs = [ ".." ]
}
-static_library("libdart_vm_nosnapshot") {
+source_set("libdart_vm_nosnapshot") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -98,7 +98,7 @@ static_library("libdart_vm_nosnapshot") {
include_dirs = [ ".." ]
}
-static_library("libdart_vm_nosnapshot_with_precompiler") {
+source_set("libdart_vm_nosnapshot_with_precompiler") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -117,7 +117,7 @@ static_library("libdart_vm_nosnapshot_with_precompiler") {
include_dirs = [ ".." ]
}
-static_library("libdart_vm_with_precompiler") {
+source_set("libdart_vm_with_precompiler") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -230,7 +230,7 @@ template("generate_core_libraries") {
all_libsources = rebase_path(invoker.allsources, ".", "../lib")
- static_library("libdart_lib_nosnapshot_with_precompiler") {
+ source_set("libdart_lib_nosnapshot_with_precompiler") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -244,7 +244,7 @@ template("generate_core_libraries") {
include_dirs = [ ".." ]
}
- static_library("libdart_lib_with_precompiler") {
+ source_set("libdart_lib_with_precompiler") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -258,7 +258,7 @@ template("generate_core_libraries") {
include_dirs = [ ".." ]
}
- static_library("libdart_lib_jit") {
+ source_set("libdart_lib_jit") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
@@ -270,7 +270,7 @@ template("generate_core_libraries") {
include_dirs = [ ".." ]
}
- static_library("libdart_lib_precompiled_runtime") {
+ source_set("libdart_lib_precompiled_runtime") {
configs += [
"..:dart_config",
"..:dart_maybe_product_config",
« no previous file with comments | « runtime/lib/stacktrace.cc ('k') | runtime/vm/gdb_helpers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698