| 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 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', |
| 10 'utf_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf_gen.cc', | 10 'utf_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf_gen.cc', |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 'libdart_withcore', | 368 'libdart_withcore', |
| 369 'libdart_builtin', | 369 'libdart_builtin', |
| 370 'generate_snapshot_test_dat_file', | 370 'generate_snapshot_test_dat_file', |
| 371 ], | 371 ], |
| 372 'include_dirs': [ | 372 'include_dirs': [ |
| 373 '..', | 373 '..', |
| 374 '<(SHARED_INTERMEDIATE_DIR)', | 374 '<(SHARED_INTERMEDIATE_DIR)', |
| 375 ], | 375 ], |
| 376 'sources': [ | 376 'sources': [ |
| 377 'run_vm_tests.cc', | 377 'run_vm_tests.cc', |
| 378 'builtin.cc', |
| 379 # Include generated source files. |
| 380 '<(builtin_cc_file)', |
| 381 '<(io_cc_file)', |
| 382 '<(json_cc_file)', |
| 383 '<(uri_cc_file)', |
| 384 '<(utf_cc_file)', |
| 378 ], | 385 ], |
| 379 'includes': [ | 386 'includes': [ |
| 380 'builtin_impl_sources.gypi', | 387 'builtin_impl_sources.gypi', |
| 381 '../platform/platform_sources.gypi', | 388 '../platform/platform_sources.gypi', |
| 382 '../vm/vm_sources.gypi', | 389 '../vm/vm_sources.gypi', |
| 383 ], | 390 ], |
| 384 'defines': [ | 391 'defines': [ |
| 385 'TESTING', | 392 'TESTING', |
| 386 ], | 393 ], |
| 387 # Only include _test.[cc|h] files. | 394 # Only include _test.[cc|h] files. |
| 388 'sources/': [ | 395 'sources/': [ |
| 389 ['exclude', '\\.(cc|h)$'], | 396 ['exclude', '\\.(cc|h)$'], |
| 397 ['include', 'run_vm_tests.cc'], |
| 398 ['include', 'builtin.cc'], |
| 399 ['include', '_gen\\.cc$'], |
| 390 ['include', '_test\\.(cc|h)$'], | 400 ['include', '_test\\.(cc|h)$'], |
| 391 ['include', 'run_vm_tests.cc'], | |
| 392 ], | 401 ], |
| 393 'conditions': [ | 402 'conditions': [ |
| 394 ['OS=="win"', { | 403 ['OS=="win"', { |
| 395 'link_settings': { | 404 'link_settings': { |
| 396 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 405 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 397 }, | 406 }, |
| 398 }], | 407 }], |
| 399 ], | 408 ], |
| 400 }, | 409 }, |
| 401 { | 410 { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 426 ['OS=="mac"', { | 435 ['OS=="mac"', { |
| 427 'xcode_settings': { | 436 'xcode_settings': { |
| 428 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 437 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 429 }, | 438 }, |
| 430 }], | 439 }], |
| 431 ], | 440 ], |
| 432 }, | 441 }, |
| 433 ], | 442 ], |
| 434 } | 443 } |
| 435 | 444 |
| OLD | NEW |