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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
355 'libdart_lib_nosnapshot', | 355 'libdart_lib_nosnapshot', |
356 'libdart_vm_nosnapshot', | 356 'libdart_vm_nosnapshot', |
357 'libdouble_conversion', | 357 'libdouble_conversion', |
358 'generate_version_cc_file#host', | 358 'generate_version_cc_file#host', |
359 ], | 359 ], |
360 'include_dirs': [ | 360 'include_dirs': [ |
361 '..', | 361 '..', |
362 ], | 362 ], |
363 'sources': [ | 363 'sources': [ |
364 '../include/dart_api.h', | 364 '../include/dart_api.h', |
365 '../include/dart_debugger_api.h', | |
366 '../include/dart_mirrors_api.h', | 365 '../include/dart_mirrors_api.h', |
367 '../include/dart_native_api.h', | 366 '../include/dart_native_api.h', |
| 367 '../include/dart_tools_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 'DART_NO_SNAPSHOT', |
377 ], | 377 ], |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 }], | 810 }], |
811 ['OS=="linux"', { | 811 ['OS=="linux"', { |
812 'cflags': [ | 812 'cflags': [ |
813 '-fPIC', | 813 '-fPIC', |
814 ], | 814 ], |
815 }], | 815 }], |
816 ], | 816 ], |
817 }, | 817 }, |
818 ], | 818 ], |
819 } | 819 } |
OLD | NEW |