| 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 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 9 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', | 10 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 ], | 268 ], |
| 269 }, | 269 }, |
| 270 { | 270 { |
| 271 'target_name': 'libdart_withcore', | 271 'target_name': 'libdart_withcore', |
| 272 'type': 'static_library', | 272 'type': 'static_library', |
| 273 'dependencies': [ | 273 'dependencies': [ |
| 274 'libdart_lib_withcore', | 274 'libdart_lib_withcore', |
| 275 'libdart_vm', | 275 'libdart_vm', |
| 276 'libjscre', | 276 'libjscre', |
| 277 'libdouble_conversion', | 277 'libdouble_conversion', |
| 278 'generate_version_cc_file', |
| 278 ], | 279 ], |
| 279 'include_dirs': [ | 280 'include_dirs': [ |
| 280 '..', | 281 '..', |
| 281 ], | 282 ], |
| 282 'sources': [ | 283 'sources': [ |
| 283 '../include/dart_api.h', | 284 '../include/dart_api.h', |
| 284 '../include/dart_debugger_api.h', | 285 '../include/dart_debugger_api.h', |
| 285 '../vm/dart_api_impl.cc', | 286 '../vm/dart_api_impl.cc', |
| 286 '../vm/debugger_api_impl.cc', | 287 '../vm/debugger_api_impl.cc', |
| 288 '<(version_cc_file)', |
| 287 ], | 289 ], |
| 288 }, | 290 }, |
| 289 { | 291 { |
| 290 # Completely statically linked binary for generating snapshots. | 292 # Completely statically linked binary for generating snapshots. |
| 291 'target_name': 'gen_snapshot', | 293 'target_name': 'gen_snapshot', |
| 292 'type': 'executable', | 294 'type': 'executable', |
| 293 'dependencies': [ | 295 'dependencies': [ |
| 294 'libdart_withcore', | 296 'libdart_withcore', |
| 295 'libdart_builtin', | 297 'libdart_builtin', |
| 296 ], | 298 ], |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 ['OS=="mac"', { | 519 ['OS=="mac"', { |
| 518 'xcode_settings': { | 520 'xcode_settings': { |
| 519 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 521 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 520 }, | 522 }, |
| 521 }], | 523 }], |
| 522 ], | 524 ], |
| 523 }, | 525 }, |
| 524 ], | 526 ], |
| 525 } | 527 } |
| 526 | 528 |
| OLD | NEW |