Chromium Code Reviews| 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', | |
| 263 ], | 264 ], |
| 264 'include_dirs': [ | 265 'include_dirs': [ |
| 265 '..', | 266 '..', |
| 266 ], | 267 ], |
| 267 'sources': [ | 268 'sources': [ |
| 268 'builtin_natives.cc', | 269 'builtin_natives.cc', |
| 269 'builtin.h', | 270 'builtin.h', |
| 270 ], | 271 ], |
| 271 'includes': [ | 272 'includes': [ |
| 272 'builtin_impl_sources.gypi', | 273 'builtin_impl_sources.gypi', |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 296 ['OS=="linux"', { | 297 ['OS=="linux"', { |
| 297 'link_settings': { | 298 'link_settings': { |
| 298 'libraries': [ | 299 'libraries': [ |
| 299 '-ldl', | 300 '-ldl', |
| 300 ], | 301 ], |
| 301 }, | 302 }, |
| 302 }], | 303 }], |
| 303 ], | 304 ], |
| 304 }, | 305 }, |
| 305 { | 306 { |
| 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': [ | |
|
Ivan Posva
2012/11/02 15:58:52
Can you briefly explain what this does and why it
Bill Hesse
2012/11/02 16:08:15
The targets like nss and zlib include direct-depen
| |
| 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 { | |
| 306 'target_name': 'libdart_withcore', | 329 'target_name': 'libdart_withcore', |
| 307 'type': 'static_library', | 330 'type': 'static_library', |
| 308 'dependencies': [ | 331 'dependencies': [ |
| 309 'libdart_lib_withcore', | 332 'libdart_lib_withcore', |
| 310 'libdart_vm', | 333 'libdart_vm', |
| 311 'libjscre', | 334 'libjscre', |
| 312 'libdouble_conversion', | 335 'libdouble_conversion', |
| 313 'generate_version_cc_file', | 336 'generate_version_cc_file', |
| 314 ], | 337 ], |
| 315 'include_dirs': [ | 338 'include_dirs': [ |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 557 ['OS=="mac"', { | 580 ['OS=="mac"', { |
| 558 'xcode_settings': { | 581 'xcode_settings': { |
| 559 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 582 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 560 }, | 583 }, |
| 561 }], | 584 }], |
| 562 ], | 585 ], |
| 563 }, | 586 }, |
| 564 ], | 587 ], |
| 565 } | 588 } |
| 566 | 589 |
| OLD | NEW |