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

Unified Diff: runtime/bin/bin.gypi

Issue 12221022: Initial prototype of vmstats support, based on Dart VM Stats draft design doc. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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/main.cc » ('j') | runtime/bin/vmstats.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/bin.gypi
===================================================================
--- runtime/bin/bin.gypi (revision 18152)
+++ runtime/bin/bin.gypi (working copy)
@@ -538,6 +538,21 @@
]
},
{
+ # vmstats service.
+ 'target_name': 'vmstats',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'libdart_io'
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'vmstats.cc',
+ 'vmstats.h',
+ ],
+ },
siva 2013/02/09 01:00:57 Does this have to be a separate static library, ca
Tom Ball 2013/02/14 23:45:16 I added to them to the targets that include main.c
+ {
# dart binary with a snapshot of corelibs built in.
'target_name': 'dart',
'type': 'executable',
@@ -546,6 +561,7 @@
'libdart_builtin',
'libdart_io',
'generate_snapshot_file',
+ 'vmstats',
],
'include_dirs': [
'..',
@@ -585,6 +601,7 @@
'libdart_withcore',
'libdart_builtin',
'libdart_io',
+ 'vmstats',
],
'include_dirs': [
'..',
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | runtime/bin/vmstats.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698