| 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 '../include/dart_mirrors_api.h', | 366 '../include/dart_mirrors_api.h', |
| 367 '../include/dart_native_api.h', | 367 '../include/dart_native_api.h', |
| 368 '../vm/dart_api_impl.cc', | 368 '../vm/dart_api_impl.cc', |
| 369 '../vm/debugger_api_impl.cc', | 369 '../vm/debugger_api_impl.cc', |
| 370 '../vm/mirrors_api_impl.cc', | 370 '../vm/mirrors_api_impl.cc', |
| 371 '../vm/native_api_impl.cc', | 371 '../vm/native_api_impl.cc', |
| 372 '<(version_cc_file)', | 372 '<(version_cc_file)', |
| 373 ], | 373 ], |
| 374 'defines': [ | 374 'defines': [ |
| 375 'DART_SHARED_LIB', | 375 'DART_SHARED_LIB', |
| 376 'DART_NO_SNAPSHOT', |
| 376 ], | 377 ], |
| 377 }, | 378 }, |
| 378 { | 379 { |
| 379 # Completely statically linked binary for generating snapshots. | 380 # Completely statically linked binary for generating snapshots. |
| 380 'target_name': 'gen_snapshot', | 381 'target_name': 'gen_snapshot', |
| 381 'type': 'executable', | 382 'type': 'executable', |
| 382 'toolsets':['host'], | 383 'toolsets':['host'], |
| 383 'dependencies': [ | 384 'dependencies': [ |
| 384 'libdart_nosnapshot', | 385 'libdart_nosnapshot', |
| 385 'libdart_builtin', | 386 'libdart_builtin', |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 809 }], | 810 }], |
| 810 ['OS=="linux"', { | 811 ['OS=="linux"', { |
| 811 'cflags': [ | 812 'cflags': [ |
| 812 '-fPIC', | 813 '-fPIC', |
| 813 ], | 814 ], |
| 814 }], | 815 }], |
| 815 ], | 816 ], |
| 816 }, | 817 }, |
| 817 ], | 818 ], |
| 818 } | 819 } |
| OLD | NEW |