| 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 ], | 392 ], |
| 393 'include_dirs': [ | 393 'include_dirs': [ |
| 394 '..', | 394 '..', |
| 395 ], | 395 ], |
| 396 'sources': [ | 396 'sources': [ |
| 397 'main.cc', | 397 'main.cc', |
| 398 'builtin_natives.cc', | 398 'builtin_natives.cc', |
| 399 'builtin_nolib.cc', | 399 'builtin_nolib.cc', |
| 400 'builtin.h', | 400 'builtin.h', |
| 401 'io_natives.h', | 401 'io_natives.h', |
| 402 'resources.h', | |
| 403 'vmservice.h', | 402 'vmservice.h', |
| 404 'vmservice_impl.cc', | 403 'vmservice_impl.cc', |
| 405 'vmservice_impl.h', | 404 'vmservice_impl.h', |
| 406 '<(snapshot_cc_file)', | 405 '<(snapshot_cc_file)', |
| 407 '<(resources_cc_file)', | 406 '<(resources_cc_file)', |
| 408 ], | 407 ], |
| 409 'conditions': [ | 408 'conditions': [ |
| 410 ['OS=="win"', { | 409 ['OS=="win"', { |
| 411 'link_settings': { | 410 'link_settings': { |
| 412 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], | 411 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], |
| (...skipping 29 matching lines...) Expand all Loading... |
| 442 ], | 441 ], |
| 443 'include_dirs': [ | 442 'include_dirs': [ |
| 444 '..', | 443 '..', |
| 445 ], | 444 ], |
| 446 'sources': [ | 445 'sources': [ |
| 447 'main.cc', | 446 'main.cc', |
| 448 'builtin.cc', | 447 'builtin.cc', |
| 449 'builtin_natives.cc', | 448 'builtin_natives.cc', |
| 450 'builtin.h', | 449 'builtin.h', |
| 451 'io_natives.h', | 450 'io_natives.h', |
| 452 'resources.h', | |
| 453 'vmservice.h', | 451 'vmservice.h', |
| 454 'vmservice_impl.cc', | 452 'vmservice_impl.cc', |
| 455 'vmservice_impl.h', | 453 'vmservice_impl.h', |
| 456 # Include generated source files. | 454 # Include generated source files. |
| 457 '<(builtin_cc_file)', | 455 '<(builtin_cc_file)', |
| 458 '<(io_cc_file)', | 456 '<(io_cc_file)', |
| 459 '<(io_patch_cc_file)', | 457 '<(io_patch_cc_file)', |
| 460 '<(resources_cc_file)', | 458 '<(resources_cc_file)', |
| 461 'snapshot_empty.cc', | 459 'snapshot_empty.cc', |
| 462 ], | 460 ], |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 635 }], | 633 }], |
| 636 ['OS=="linux"', { | 634 ['OS=="linux"', { |
| 637 'cflags': [ | 635 'cflags': [ |
| 638 '-fPIC', | 636 '-fPIC', |
| 639 ], | 637 ], |
| 640 }], | 638 }], |
| 641 ], | 639 ], |
| 642 }, | 640 }, |
| 643 ], | 641 ], |
| 644 } | 642 } |
| OLD | NEW |