| 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 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', | 9 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', |
| 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', | 10 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 'target_name': 'libdart_builtin', | 253 'target_name': 'libdart_builtin', |
| 254 'type': 'static_library', | 254 'type': 'static_library', |
| 255 'dependencies': [ | 255 'dependencies': [ |
| 256 'generate_builtin_cc_file', | 256 'generate_builtin_cc_file', |
| 257 'generate_crypto_cc_file', | 257 'generate_crypto_cc_file', |
| 258 'generate_io_cc_file', | 258 'generate_io_cc_file', |
| 259 'generate_io_patch_cc_file', | 259 'generate_io_patch_cc_file', |
| 260 'generate_json_cc_file', | 260 'generate_json_cc_file', |
| 261 'generate_uri_cc_file', | 261 'generate_uri_cc_file', |
| 262 'generate_utf_cc_file', | 262 'generate_utf_cc_file', |
| 263 'nss', | |
| 264 ], | 263 ], |
| 265 'include_dirs': [ | 264 'include_dirs': [ |
| 266 '..', | 265 '..', |
| 267 ], | 266 ], |
| 268 'sources': [ | 267 'sources': [ |
| 269 'builtin_natives.cc', | 268 'builtin_natives.cc', |
| 270 'builtin.h', | 269 'builtin.h', |
| 271 ], | 270 ], |
| 272 'includes': [ | 271 'includes': [ |
| 273 'builtin_impl_sources.gypi', | 272 'builtin_impl_sources.gypi', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 297 ['OS=="linux"', { | 296 ['OS=="linux"', { |
| 298 'link_settings': { | 297 'link_settings': { |
| 299 'libraries': [ | 298 'libraries': [ |
| 300 '-ldl', | 299 '-ldl', |
| 301 ], | 300 ], |
| 302 }, | 301 }, |
| 303 }], | 302 }], |
| 304 ], | 303 ], |
| 305 }, | 304 }, |
| 306 { | 305 { |
| 307 'target_name': 'nss', | |
| 308 'type': 'none', | |
| 309 'dependencies': [ | |
| 310 'bin/net/nss.gyp:nss', | |
| 311 'bin/net/nss.gyp:nspr', | |
| 312 'bin/net/nss.gyp:nssckbi', | |
| 313 'bin/net/nss.gyp:nss_static', | |
| 314 'bin/net/ssl.gyp:libssl', | |
| 315 'bin/net/zlib.gyp:zlib', | |
| 316 'bin/net/sqlite.gyp:sqlite', | |
| 317 ], | |
| 318 'export_dependent_settings': [ | |
| 319 'bin/net/nss.gyp:nss', | |
| 320 'bin/net/nss.gyp:nspr', | |
| 321 'bin/net/nss.gyp:nssckbi', | |
| 322 'bin/net/nss.gyp:nss_static', | |
| 323 'bin/net/ssl.gyp:libssl', | |
| 324 'bin/net/zlib.gyp:zlib', | |
| 325 'bin/net/sqlite.gyp:sqlite', | |
| 326 ], | |
| 327 }, | |
| 328 { | |
| 329 'target_name': 'libdart_withcore', | 306 'target_name': 'libdart_withcore', |
| 330 'type': 'static_library', | 307 'type': 'static_library', |
| 331 'dependencies': [ | 308 'dependencies': [ |
| 332 'libdart_lib_withcore', | 309 'libdart_lib_withcore', |
| 333 'libdart_vm', | 310 'libdart_vm', |
| 334 'libjscre', | 311 'libjscre', |
| 335 'libdouble_conversion', | 312 'libdouble_conversion', |
| 336 'generate_version_cc_file', | 313 'generate_version_cc_file', |
| 337 ], | 314 ], |
| 338 'include_dirs': [ | 315 'include_dirs': [ |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 ['OS=="mac"', { | 557 ['OS=="mac"', { |
| 581 'xcode_settings': { | 558 'xcode_settings': { |
| 582 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 559 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 583 }, | 560 }, |
| 584 }], | 561 }], |
| 585 ], | 562 ], |
| 586 }, | 563 }, |
| 587 ], | 564 ], |
| 588 } | 565 } |
| 589 | 566 |
| OLD | NEW |