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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', | 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', |
8 | 8 |
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', | 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', |
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', | 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', |
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
342 # Needed for sources outside of nss that include pr and ssl | 342 # Needed for sources outside of nss that include pr and ssl |
343 # header files. | 343 # header files. |
344 'MDCPUCFG="md/_linux.cfg"', | 344 'MDCPUCFG="md/_linux.cfg"', |
345 ], | 345 ], |
346 }], | 346 }], |
347 ], | 347 ], |
348 }, | 348 }, |
349 }, | 349 }, |
350 }, | 350 }, |
351 { | 351 { |
352 'target_name': 'libdart_withcore', | 352 'target_name': 'libdart_withcore', |
Ivan Posva
2015/05/08 23:52:00
Should we name this also _nosnapshot?
siva
2015/05/11 18:22:13
Done.
| |
353 'type': 'static_library', | 353 'type': 'static_library', |
354 'toolsets':['target','host'], | 354 'toolsets':['target','host'], |
355 'dependencies': [ | 355 'dependencies': [ |
356 'libdart_lib_withcore', | 356 'libdart_lib_withcore', |
357 'libdart_vm', | 357 'libdart_nosnapshot_vm', |
358 'libdouble_conversion', | 358 'libdouble_conversion', |
359 'generate_version_cc_file#host', | 359 'generate_version_cc_file#host', |
360 ], | 360 ], |
361 'include_dirs': [ | 361 'include_dirs': [ |
362 '..', | 362 '..', |
363 ], | 363 ], |
364 'sources': [ | 364 'sources': [ |
365 '../include/dart_api.h', | 365 '../include/dart_api.h', |
366 '../include/dart_debugger_api.h', | 366 '../include/dart_debugger_api.h', |
367 '../include/dart_mirrors_api.h', | 367 '../include/dart_mirrors_api.h', |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
714 'target_name': 'process_test', | 714 'target_name': 'process_test', |
715 'type': 'executable', | 715 'type': 'executable', |
716 'sources': [ | 716 'sources': [ |
717 'process_test.cc', | 717 'process_test.cc', |
718 ] | 718 ] |
719 }, | 719 }, |
720 { | 720 { |
721 'target_name': 'run_vm_tests', | 721 'target_name': 'run_vm_tests', |
722 'type': 'executable', | 722 'type': 'executable', |
723 'dependencies': [ | 723 'dependencies': [ |
724 'libdart_withcore', | 724 'libdart', |
725 'libdart_builtin', | 725 'libdart_builtin', |
726 'libdart_io', | 726 'libdart_io', |
727 'generate_snapshot_file#host', | 727 'generate_snapshot_file#host', |
728 'generate_snapshot_test_dat_file#host', | 728 'generate_snapshot_test_dat_file#host', |
729 ], | 729 ], |
730 'include_dirs': [ | 730 'include_dirs': [ |
731 '..', | 731 '..', |
732 '<(gen_source_dir)', | 732 '<(gen_source_dir)', |
733 ], | 733 ], |
734 'sources': [ | 734 'sources': [ |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
809 }], | 809 }], |
810 ['OS=="linux"', { | 810 ['OS=="linux"', { |
811 'cflags': [ | 811 'cflags': [ |
812 '-fPIC', | 812 '-fPIC', |
813 ], | 813 ], |
814 }], | 814 }], |
815 ], | 815 ], |
816 }, | 816 }, |
817 ], | 817 ], |
818 } | 818 } |
OLD | NEW |