| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 ], | 535 ], |
| 536 'message': 'Generating ''<(snapshot_cc_file)'' file.' | 536 'message': 'Generating ''<(snapshot_cc_file)'' file.' |
| 537 }, | 537 }, |
| 538 ] | 538 ] |
| 539 }, | 539 }, |
| 540 { | 540 { |
| 541 # dart binary with a snapshot of corelibs built in. | 541 # dart binary with a snapshot of corelibs built in. |
| 542 'target_name': 'dart', | 542 'target_name': 'dart', |
| 543 'type': 'executable', | 543 'type': 'executable', |
| 544 'dependencies': [ | 544 'dependencies': [ |
| 545 'libdart_export', | 545 'libdart', |
| 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', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 ['OS=="mac"', { | 709 ['OS=="mac"', { |
| 710 'xcode_settings': { | 710 'xcode_settings': { |
| 711 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 711 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 712 }, | 712 }, |
| 713 }], | 713 }], |
| 714 ], | 714 ], |
| 715 }, | 715 }, |
| 716 ], | 716 ], |
| 717 } | 717 } |
| 718 | 718 |
| OLD | NEW |