| 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 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', | 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', |
| 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', | 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', |
| 9 'builtin_in_cc_file': 'builtin_in.cc', | 9 'builtin_in_cc_file': 'builtin_in.cc', |
| 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', | 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 'include_dirs': [ | 371 'include_dirs': [ |
| 372 '..', | 372 '..', |
| 373 ], | 373 ], |
| 374 'sources': [ | 374 'sources': [ |
| 375 'main.cc', | 375 'main.cc', |
| 376 'builtin_nolib.cc', | 376 'builtin_nolib.cc', |
| 377 'resources.h', | 377 'resources.h', |
| 378 'vmstats.h', | 378 'vmstats.h', |
| 379 'vmstats_impl.cc', | 379 'vmstats_impl.cc', |
| 380 'vmstats_impl.h', | 380 'vmstats_impl.h', |
| 381 'vmstats_impl_android.cc', |
| 382 'vmstats_impl_linux.cc', |
| 383 'vmstats_impl_macos.cc', |
| 384 'vmstats_impl_win.cc', |
| 381 '<(snapshot_cc_file)', | 385 '<(snapshot_cc_file)', |
| 382 '<(resources_cc_file)', | 386 '<(resources_cc_file)', |
| 383 ], | 387 ], |
| 384 'conditions': [ | 388 'conditions': [ |
| 385 ['OS=="win"', { | 389 ['OS=="win"', { |
| 386 'link_settings': { | 390 'link_settings': { |
| 387 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], | 391 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib', '-lwinmm.lib' ], |
| 388 }, | 392 }, |
| 389 # Generate an import library on Windows, by exporting a function. | 393 # Generate an import library on Windows, by exporting a function. |
| 390 # Extensions use this import library to link to the API in dart.exe. | 394 # Extensions use this import library to link to the API in dart.exe. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 416 'include_dirs': [ | 420 'include_dirs': [ |
| 417 '..', | 421 '..', |
| 418 ], | 422 ], |
| 419 'sources': [ | 423 'sources': [ |
| 420 'main.cc', | 424 'main.cc', |
| 421 'builtin.cc', | 425 'builtin.cc', |
| 422 'resources.h', | 426 'resources.h', |
| 423 'vmstats.h', | 427 'vmstats.h', |
| 424 'vmstats_impl.cc', | 428 'vmstats_impl.cc', |
| 425 'vmstats_impl.h', | 429 'vmstats_impl.h', |
| 430 'vmstats_impl_android.cc', |
| 431 'vmstats_impl_linux.cc', |
| 432 'vmstats_impl_macos.cc', |
| 433 'vmstats_impl_win.cc', |
| 426 # Include generated source files. | 434 # Include generated source files. |
| 427 '<(builtin_cc_file)', | 435 '<(builtin_cc_file)', |
| 428 '<(io_cc_file)', | 436 '<(io_cc_file)', |
| 429 '<(io_patch_cc_file)', | 437 '<(io_patch_cc_file)', |
| 430 '<(resources_cc_file)', | 438 '<(resources_cc_file)', |
| 431 'snapshot_empty.cc', | 439 'snapshot_empty.cc', |
| 432 ], | 440 ], |
| 433 'conditions': [ | 441 'conditions': [ |
| 434 ['OS=="win"', { | 442 ['OS=="win"', { |
| 435 'link_settings': { | 443 'link_settings': { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 533 ['OS=="mac"', { | 541 ['OS=="mac"', { |
| 534 'xcode_settings': { | 542 'xcode_settings': { |
| 535 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], | 543 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], |
| 536 }, | 544 }, |
| 537 }], | 545 }], |
| 538 ], | 546 ], |
| 539 }, | 547 }, |
| 540 ], | 548 ], |
| 541 } | 549 } |
| 542 | 550 |
| OLD | NEW |