| 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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 'generate_uri_cc_file', | 261 'generate_uri_cc_file', |
| 262 'generate_utf_cc_file', | 262 'generate_utf_cc_file', |
| 263 ], | 263 ], |
| 264 'include_dirs': [ | 264 'include_dirs': [ |
| 265 '..', | 265 '..', |
| 266 ], | 266 ], |
| 267 'sources': [ | 267 'sources': [ |
| 268 'builtin_natives.cc', | 268 'builtin_natives.cc', |
| 269 'builtin.h', | 269 'builtin.h', |
| 270 'io_natives.h', | 270 'io_natives.h', |
| 271 'log_android.cc', |
| 272 'log_linux.cc', |
| 273 'log_macos.cc', |
| 274 'log_win.cc', |
| 271 ], | 275 ], |
| 272 'includes': [ | 276 'includes': [ |
| 273 'builtin_impl_sources.gypi', | 277 'builtin_impl_sources.gypi', |
| 274 '../platform/platform_sources.gypi', | 278 '../platform/platform_sources.gypi', |
| 275 ], | 279 ], |
| 276 'sources/': [ | 280 'sources/': [ |
| 277 ['exclude', '_test\\.(cc|h)$'], | 281 ['exclude', '_test\\.(cc|h)$'], |
| 278 ], | 282 ], |
| 279 'conditions': [ | 283 'conditions': [ |
| 280 ['OS=="win"', { | 284 ['OS=="win"', { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 '<(io_patch_cc_file)', | 388 '<(io_patch_cc_file)', |
| 385 '<(json_cc_file)', | 389 '<(json_cc_file)', |
| 386 '<(uri_cc_file)', | 390 '<(uri_cc_file)', |
| 387 '<(utf_cc_file)', | 391 '<(utf_cc_file)', |
| 388 ], | 392 ], |
| 389 'conditions': [ | 393 'conditions': [ |
| 390 ['OS=="win"', { | 394 ['OS=="win"', { |
| 391 'link_settings': { | 395 'link_settings': { |
| 392 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], | 396 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], |
| 393 }, | 397 }, |
| 394 }]], | 398 }], |
| 399 ['OS=="android"', { |
| 400 'link_settings': { |
| 401 'libraries': [ '-llog' ], |
| 402 }, |
| 403 }] |
| 404 ], |
| 395 }, | 405 }, |
| 396 { | 406 { |
| 397 # Generate snapshot bin file. | 407 # Generate snapshot bin file. |
| 398 'target_name': 'generate_snapshot_bin', | 408 'target_name': 'generate_snapshot_bin', |
| 399 'type': 'none', | 409 'type': 'none', |
| 400 'dependencies': [ | 410 'dependencies': [ |
| 401 'gen_snapshot', | 411 'gen_snapshot', |
| 402 ], | 412 ], |
| 403 'actions': [ | 413 'actions': [ |
| 404 { | 414 { |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 ['OS=="mac"', { | 618 ['OS=="mac"', { |
| 609 'xcode_settings': { | 619 'xcode_settings': { |
| 610 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 620 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 611 }, | 621 }, |
| 612 }], | 622 }], |
| 613 ], | 623 ], |
| 614 }, | 624 }, |
| 615 ], | 625 ], |
| 616 } | 626 } |
| 617 | 627 |
| OLD | NEW |