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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
9 'builtin_in_cc_file': 'builtin_in.cc', 9 'builtin_in_cc_file': 'builtin_in.cc',
10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 'libdart_builtin', 338 'libdart_builtin',
339 'libdart_io', 339 'libdart_io',
340 'generate_snapshot_file', 340 'generate_snapshot_file',
341 ], 341 ],
342 'include_dirs': [ 342 'include_dirs': [
343 '..', 343 '..',
344 ], 344 ],
345 'sources': [ 345 'sources': [
346 'main.cc', 346 'main.cc',
347 'builtin_nolib.cc', 347 'builtin_nolib.cc',
348 'vmstats.h',
349 'vmstats_impl.cc',
350 'vmstats_impl.h',
348 '<(snapshot_cc_file)', 351 '<(snapshot_cc_file)',
349 ], 352 ],
350 'conditions': [ 353 'conditions': [
351 ['OS=="win"', { 354 ['OS=="win"', {
352 'link_settings': { 355 'link_settings': {
353 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], 356 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
354 }, 357 },
355 # Generate an import library on Windows, by exporting a function. 358 # Generate an import library on Windows, by exporting a function.
356 # Extensions use this import library to link to the API in dart.exe. 359 # Extensions use this import library to link to the API in dart.exe.
357 'msvs_settings': { 360 'msvs_settings': {
(...skipping 19 matching lines...) Expand all
377 'libdart_withcore', 380 'libdart_withcore',
378 'libdart_builtin', 381 'libdart_builtin',
379 'libdart_io', 382 'libdart_io',
380 ], 383 ],
381 'include_dirs': [ 384 'include_dirs': [
382 '..', 385 '..',
383 ], 386 ],
384 'sources': [ 387 'sources': [
385 'main.cc', 388 'main.cc',
386 'builtin.cc', 389 'builtin.cc',
390 'vmstats.h',
391 'vmstats_impl.cc',
392 'vmstats_impl.h',
387 # Include generated source files. 393 # Include generated source files.
388 '<(builtin_cc_file)', 394 '<(builtin_cc_file)',
389 '<(io_cc_file)', 395 '<(io_cc_file)',
390 '<(io_patch_cc_file)', 396 '<(io_patch_cc_file)',
391 'snapshot_empty.cc', 397 'snapshot_empty.cc',
392 ], 398 ],
393 'conditions': [ 399 'conditions': [
394 ['OS=="win"', { 400 ['OS=="win"', {
395 'link_settings': { 401 'link_settings': {
396 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], 402 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
493 ['OS=="mac"', { 499 ['OS=="mac"', {
494 'xcode_settings': { 500 'xcode_settings': {
495 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 501 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
496 }, 502 },
497 }], 503 }],
498 ], 504 ],
499 }, 505 },
500 ], 506 ],
501 } 507 }
502 508
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698