OLD | NEW |
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 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', | 7 'crypto_cc_file': '<(SHARED_INTERMEDIATE_DIR)/crypto_gen.cc', |
8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 8 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', | 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', |
10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 'libdart_builtin', | 546 'libdart_builtin', |
547 'libdart_io', | 547 'libdart_io', |
548 'generate_snapshot_file', | 548 'generate_snapshot_file', |
549 ], | 549 ], |
550 'include_dirs': [ | 550 'include_dirs': [ |
551 '..', | 551 '..', |
552 ], | 552 ], |
553 'sources': [ | 553 'sources': [ |
554 'main.cc', | 554 'main.cc', |
555 'builtin_nolib.cc', | 555 'builtin_nolib.cc', |
| 556 'vmstats.h', |
| 557 'vmstats_impl.cc', |
| 558 'vmstats_impl.h', |
556 '<(snapshot_cc_file)', | 559 '<(snapshot_cc_file)', |
557 ], | 560 ], |
558 'conditions': [ | 561 'conditions': [ |
559 ['OS=="win"', { | 562 ['OS=="win"', { |
560 'link_settings': { | 563 'link_settings': { |
561 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], | 564 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], |
562 }, | 565 }, |
563 # Generate an import library on Windows, by exporting a function. | 566 # Generate an import library on Windows, by exporting a function. |
564 # Extensions use this import library to link to the API in dart.exe. | 567 # Extensions use this import library to link to the API in dart.exe. |
565 'msvs_settings': { | 568 'msvs_settings': { |
(...skipping 19 matching lines...) Expand all Loading... |
585 'libdart_withcore', | 588 'libdart_withcore', |
586 'libdart_builtin', | 589 'libdart_builtin', |
587 'libdart_io', | 590 'libdart_io', |
588 ], | 591 ], |
589 'include_dirs': [ | 592 'include_dirs': [ |
590 '..', | 593 '..', |
591 ], | 594 ], |
592 'sources': [ | 595 'sources': [ |
593 'main.cc', | 596 'main.cc', |
594 'builtin.cc', | 597 'builtin.cc', |
| 598 'vmstats.h', |
| 599 'vmstats_impl.cc', |
| 600 'vmstats_impl.h', |
595 # Include generated source files. | 601 # Include generated source files. |
596 '<(builtin_cc_file)', | 602 '<(builtin_cc_file)', |
597 '<(crypto_cc_file)', | 603 '<(crypto_cc_file)', |
598 '<(io_cc_file)', | 604 '<(io_cc_file)', |
599 '<(io_patch_cc_file)', | 605 '<(io_patch_cc_file)', |
600 '<(json_cc_file)', | 606 '<(json_cc_file)', |
601 '<(uri_cc_file)', | 607 '<(uri_cc_file)', |
602 '<(utf_cc_file)', | 608 '<(utf_cc_file)', |
603 'snapshot_empty.cc', | 609 'snapshot_empty.cc', |
604 ], | 610 ], |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
709 ['OS=="mac"', { | 715 ['OS=="mac"', { |
710 'xcode_settings': { | 716 'xcode_settings': { |
711 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 717 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
712 }, | 718 }, |
713 }], | 719 }], |
714 ], | 720 ], |
715 }, | 721 }, |
716 ], | 722 ], |
717 } | 723 } |
718 | 724 |
OLD | NEW |