| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 { | 218 { |
| 219 'target_name': 'libdart_builtin', | 219 'target_name': 'libdart_builtin', |
| 220 'type': 'static_library', | 220 'type': 'static_library', |
| 221 'dependencies': [ | 221 'dependencies': [ |
| 222 'generate_builtin_cc_file', | 222 'generate_builtin_cc_file', |
| 223 'generate_crypto_cc_file', | 223 'generate_crypto_cc_file', |
| 224 'generate_io_cc_file', | 224 'generate_io_cc_file', |
| 225 'generate_json_cc_file', | 225 'generate_json_cc_file', |
| 226 'generate_uri_cc_file', | 226 'generate_uri_cc_file', |
| 227 'generate_utf_cc_file', | 227 'generate_utf_cc_file', |
| 228 'libzlib', |
| 228 ], | 229 ], |
| 229 'include_dirs': [ | 230 'include_dirs': [ |
| 230 '..', | 231 '..', |
| 231 ], | 232 ], |
| 232 'sources': [ | 233 'sources': [ |
| 233 'builtin_natives.cc', | 234 'builtin_natives.cc', |
| 234 'builtin.h', | 235 'builtin.h', |
| 235 ], | 236 ], |
| 236 'includes': [ | 237 'includes': [ |
| 237 'builtin_impl_sources.gypi', | 238 'builtin_impl_sources.gypi', |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 ['OS=="mac"', { | 520 ['OS=="mac"', { |
| 520 'xcode_settings': { | 521 'xcode_settings': { |
| 521 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 522 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 522 }, | 523 }, |
| 523 }], | 524 }], |
| 524 ], | 525 ], |
| 525 }, | 526 }, |
| 526 ], | 527 ], |
| 527 } | 528 } |
| 528 | 529 |
| OLD | NEW |