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

Side by Side Diff: runtime/bin/bin.gypi

Issue 14313002: Added ctrl-\ support in dart binary to dump isolate stacks. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 'include_dirs': [ 371 'include_dirs': [
372 '..', 372 '..',
373 ], 373 ],
374 'sources': [ 374 'sources': [
375 'main.cc', 375 'main.cc',
376 'builtin_nolib.cc', 376 'builtin_nolib.cc',
377 'resources.h', 377 'resources.h',
378 'vmstats.h', 378 'vmstats.h',
379 'vmstats_impl.cc', 379 'vmstats_impl.cc',
380 'vmstats_impl.h', 380 'vmstats_impl.h',
381 'vmstats_impl_android.cc',
382 'vmstats_impl_linux.cc',
383 'vmstats_impl_macos.cc',
384 'vmstats_impl_win.cc',
381 '<(snapshot_cc_file)', 385 '<(snapshot_cc_file)',
382 '<(resources_cc_file)', 386 '<(resources_cc_file)',
383 ], 387 ],
384 'conditions': [ 388 'conditions': [
385 ['OS=="win"', { 389 ['OS=="win"', {
386 'link_settings': { 390 'link_settings': {
387 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], 391 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ],
388 }, 392 },
389 # Generate an import library on Windows, by exporting a function. 393 # Generate an import library on Windows, by exporting a function.
390 # Extensions use this import library to link to the API in dart.exe. 394 # Extensions use this import library to link to the API in dart.exe.
(...skipping 25 matching lines...) Expand all
416 'include_dirs': [ 420 'include_dirs': [
417 '..', 421 '..',
418 ], 422 ],
419 'sources': [ 423 'sources': [
420 'main.cc', 424 'main.cc',
421 'builtin.cc', 425 'builtin.cc',
422 'resources.h', 426 'resources.h',
423 'vmstats.h', 427 'vmstats.h',
424 'vmstats_impl.cc', 428 'vmstats_impl.cc',
425 'vmstats_impl.h', 429 'vmstats_impl.h',
430 'vmstats_impl_android.cc',
431 'vmstats_impl_linux.cc',
432 'vmstats_impl_macos.cc',
433 'vmstats_impl_win.cc',
426 # Include generated source files. 434 # Include generated source files.
427 '<(builtin_cc_file)', 435 '<(builtin_cc_file)',
428 '<(io_cc_file)', 436 '<(io_cc_file)',
429 '<(io_patch_cc_file)', 437 '<(io_patch_cc_file)',
430 '<(resources_cc_file)', 438 '<(resources_cc_file)',
431 'snapshot_empty.cc', 439 'snapshot_empty.cc',
432 ], 440 ],
433 'conditions': [ 441 'conditions': [
434 ['OS=="win"', { 442 ['OS=="win"', {
435 'link_settings': { 443 'link_settings': {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 ['OS=="linux"', { 546 ['OS=="linux"', {
539 'cflags': [ 547 'cflags': [
540 '-fPIC', 548 '-fPIC',
541 ], 549 ],
542 }], 550 }],
543 ], 551 ],
544 }, 552 },
545 ], 553 ],
546 } 554 }
547 555
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