| 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 # We place most generated source files in LIB_DIR (rather than, say | 7 # We place most generated source files in LIB_DIR (rather than, say |
| 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids | 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids |
| 9 # two problems. First, if a generated source file has architecture specific | 9 # two problems. First, if a generated source file has architecture specific |
| 10 # code, we'll get two different files in two different directories. Second, | 10 # code, we'll get two different files in two different directories. Second, |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 'libjscre', | 223 'libjscre', |
| 224 'libdouble_conversion', | 224 'libdouble_conversion', |
| 225 'generate_version_cc_file', | 225 'generate_version_cc_file', |
| 226 ], | 226 ], |
| 227 'include_dirs': [ | 227 'include_dirs': [ |
| 228 '..', | 228 '..', |
| 229 ], | 229 ], |
| 230 'sources': [ | 230 'sources': [ |
| 231 '../include/dart_api.h', | 231 '../include/dart_api.h', |
| 232 '../include/dart_debugger_api.h', | 232 '../include/dart_debugger_api.h', |
| 233 '../include/dart_mirrors_api.h', |
| 234 '../include/dart_native_api.h', |
| 233 '../vm/dart_api_impl.cc', | 235 '../vm/dart_api_impl.cc', |
| 234 '../vm/debugger_api_impl.cc', | 236 '../vm/debugger_api_impl.cc', |
| 237 '../vm/mirrors_api_impl.cc', |
| 238 '../vm/native_api_impl.cc', |
| 235 '<(version_cc_file)', | 239 '<(version_cc_file)', |
| 236 ], | 240 ], |
| 237 'defines': [ | 241 'defines': [ |
| 238 'DART_SHARED_LIB', | 242 'DART_SHARED_LIB', |
| 239 ], | 243 ], |
| 240 }, | 244 }, |
| 241 { | 245 { |
| 242 # Completely statically linked binary for generating snapshots. | 246 # Completely statically linked binary for generating snapshots. |
| 243 'target_name': 'gen_snapshot', | 247 'target_name': 'gen_snapshot', |
| 244 'type': 'executable', | 248 'type': 'executable', |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 681 '-fPIC', | 685 '-fPIC', |
| 682 ], | 686 ], |
| 683 }], | 687 }], |
| 684 ], | 688 ], |
| 685 }, | 689 }, |
| 686 ], | 690 ], |
| 687 }], | 691 }], |
| 688 ], | 692 ], |
| 689 } | 693 } |
| 690 | 694 |
| OLD | NEW |