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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', | 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', |
| 8 'libgen_in_cc_file': '../lib/libgen_in.cc', | 8 'libgen_in_cc_file': '../lib/libgen_in.cc', |
| 9 'builtin_in_cc_file': '../bin/builtin_in.cc', | 9 'builtin_in_cc_file': '../bin/builtin_in.cc', |
| 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', | 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 420 '--include', 'vm/bootstrap.h', | 420 '--include', 'vm/bootstrap.h', |
| 421 '--var_name', 'dart::Bootstrap::convert_patch_paths_', | 421 '--var_name', 'dart::Bootstrap::convert_patch_paths_', |
| 422 '--library_name', 'dart:convert', | 422 '--library_name', 'dart:convert', |
| 423 '<@(_sources)', | 423 '<@(_sources)', |
| 424 ], | 424 ], |
| 425 'message': 'Generating ''<(convert_patch_cc_file)'' file.' | 425 'message': 'Generating ''<(convert_patch_cc_file)'' file.' |
| 426 }, | 426 }, |
| 427 ] | 427 ] |
| 428 }, | 428 }, |
| 429 { | 429 { |
| 430 'target_name': 'generate_corelib_cc_file', | 430 'target_name': 'generate_corelib_cc_file', |
|
Ivan Posva
2014/11/04 18:03:16
corelib -> core
Here and other places...
zra
2014/11/04 22:03:42
Done.
| |
| 431 'type': 'none', | 431 'type': 'none', |
| 432 'toolsets':['host'], | 432 'toolsets':['host'], |
| 433 'includes': [ | 433 'includes': [ |
| 434 # Load the shared core library sources. | 434 # Load the shared core library sources. |
| 435 '../../sdk/lib/core/corelib_sources.gypi', | 435 '../../sdk/lib/core/corelib_sources.gypi', |
| 436 ], | 436 ], |
| 437 'sources/': [ | 437 'sources/': [ |
| 438 # Exclude all .[cc|h] files. | 438 # Exclude all .[cc|h] files. |
| 439 # This is only here for reference. Excludes happen after | 439 # This is only here for reference. Excludes happen after |
| 440 # variable expansion, so the script has to do its own | 440 # variable expansion, so the script has to do its own |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 451 ], | 451 ], |
| 452 'outputs': [ | 452 'outputs': [ |
| 453 '<(corelib_cc_file)', | 453 '<(corelib_cc_file)', |
| 454 ], | 454 ], |
| 455 'action': [ | 455 'action': [ |
| 456 'python', | 456 'python', |
| 457 'tools/gen_library_src_paths.py', | 457 'tools/gen_library_src_paths.py', |
| 458 '--output', '<(corelib_cc_file)', | 458 '--output', '<(corelib_cc_file)', |
| 459 '--input_cc', '<(libgen_in_cc_file)', | 459 '--input_cc', '<(libgen_in_cc_file)', |
| 460 '--include', 'vm/bootstrap.h', | 460 '--include', 'vm/bootstrap.h', |
| 461 '--var_name', 'dart::Bootstrap::corelib_source_paths_', | 461 '--var_name', 'dart::Bootstrap::core_source_paths_', |
| 462 '--library_name', 'dart:core', | 462 '--library_name', 'dart:core', |
| 463 '<@(_sources)', | 463 '<@(_sources)', |
| 464 ], | 464 ], |
| 465 'message': 'Generating ''<(corelib_cc_file)'' file.' | 465 'message': 'Generating ''<(corelib_cc_file)'' file.' |
| 466 }, | 466 }, |
| 467 ] | 467 ] |
| 468 }, | 468 }, |
| 469 { | 469 { |
| 470 'target_name': 'generate_corelib_patch_cc_file', | 470 'target_name': 'generate_corelib_patch_cc_file', |
| 471 'type': 'none', | 471 'type': 'none', |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 491 ], | 491 ], |
| 492 'outputs': [ | 492 'outputs': [ |
| 493 '<(corelib_patch_cc_file)', | 493 '<(corelib_patch_cc_file)', |
| 494 ], | 494 ], |
| 495 'action': [ | 495 'action': [ |
| 496 'python', | 496 'python', |
| 497 'tools/gen_library_src_paths.py', | 497 'tools/gen_library_src_paths.py', |
| 498 '--output', '<(corelib_patch_cc_file)', | 498 '--output', '<(corelib_patch_cc_file)', |
| 499 '--input_cc', '<(libgen_in_cc_file)', | 499 '--input_cc', '<(libgen_in_cc_file)', |
| 500 '--include', 'vm/bootstrap.h', | 500 '--include', 'vm/bootstrap.h', |
| 501 '--var_name', 'dart::Bootstrap::corelib_patch_paths_', | 501 '--var_name', 'dart::Bootstrap::core_patch_paths_', |
| 502 '--library_name', 'dart:corelib', | 502 '--library_name', 'dart:core', |
| 503 '<@(_sources)', | 503 '<@(_sources)', |
| 504 ], | 504 ], |
| 505 'message': 'Generating ''<(corelib_patch_cc_file)'' file.' | 505 'message': 'Generating ''<(corelib_patch_cc_file)'' file.' |
| 506 }, | 506 }, |
| 507 ] | 507 ] |
| 508 }, | 508 }, |
| 509 { | 509 { |
| 510 'target_name': 'generate_internal_patch_cc_file', | 510 'target_name': 'generate_internal_patch_cc_file', |
| 511 'type': 'none', | 511 'type': 'none', |
| 512 'toolsets':['host'], | 512 'toolsets':['host'], |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 531 ], | 531 ], |
| 532 'outputs': [ | 532 'outputs': [ |
| 533 '<(internal_patch_cc_file)', | 533 '<(internal_patch_cc_file)', |
| 534 ], | 534 ], |
| 535 'action': [ | 535 'action': [ |
| 536 'python', | 536 'python', |
| 537 'tools/gen_library_src_paths.py', | 537 'tools/gen_library_src_paths.py', |
| 538 '--output', '<(internal_patch_cc_file)', | 538 '--output', '<(internal_patch_cc_file)', |
| 539 '--input_cc', '<(libgen_in_cc_file)', | 539 '--input_cc', '<(libgen_in_cc_file)', |
| 540 '--include', 'vm/bootstrap.h', | 540 '--include', 'vm/bootstrap.h', |
| 541 '--var_name', 'dart::Bootstrap::internal_patch_paths_', | 541 '--var_name', 'dart::Bootstrap::_internal_patch_paths_', |
| 542 '--library_name', 'dart:_internal', | 542 '--library_name', 'dart:_internal', |
| 543 '<@(_sources)', | 543 '<@(_sources)', |
| 544 ], | 544 ], |
| 545 'message': 'Generating ''<(internal_patch_cc_file)'' file.' | 545 'message': 'Generating ''<(internal_patch_cc_file)'' file.' |
| 546 }, | 546 }, |
| 547 ] | 547 ] |
| 548 }, | 548 }, |
| 549 { | 549 { |
| 550 'target_name': 'generate_internal_cc_file', | 550 'target_name': 'generate_internal_cc_file', |
| 551 'type': 'none', | 551 'type': 'none', |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 571 ], | 571 ], |
| 572 'outputs': [ | 572 'outputs': [ |
| 573 '<(internal_cc_file)', | 573 '<(internal_cc_file)', |
| 574 ], | 574 ], |
| 575 'action': [ | 575 'action': [ |
| 576 'python', | 576 'python', |
| 577 'tools/gen_library_src_paths.py', | 577 'tools/gen_library_src_paths.py', |
| 578 '--output', '<(internal_cc_file)', | 578 '--output', '<(internal_cc_file)', |
| 579 '--input_cc', '<(libgen_in_cc_file)', | 579 '--input_cc', '<(libgen_in_cc_file)', |
| 580 '--include', 'vm/bootstrap.h', | 580 '--include', 'vm/bootstrap.h', |
| 581 '--var_name', 'dart::Bootstrap::internal_source_paths_', | 581 '--var_name', 'dart::Bootstrap::_internal_source_paths_', |
| 582 '--library_name', 'dart:_internal', | 582 '--library_name', 'dart:_internal', |
| 583 '<@(_sources)', | 583 '<@(_sources)', |
| 584 ], | 584 ], |
| 585 'message': 'Generating ''<(internal_cc_file)'' file.' | 585 'message': 'Generating ''<(internal_cc_file)'' file.' |
| 586 }, | 586 }, |
| 587 ] | 587 ] |
| 588 }, | 588 }, |
| 589 { | 589 { |
| 590 'target_name': 'generate_isolate_cc_file', | 590 'target_name': 'generate_isolate_cc_file', |
| 591 'type': 'none', | 591 'type': 'none', |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1039 '--table_name', 'service', | 1039 '--table_name', 'service', |
| 1040 '--root_prefix', 'vm/service/', | 1040 '--root_prefix', 'vm/service/', |
| 1041 '<@(_sources)' | 1041 '<@(_sources)' |
| 1042 ], | 1042 ], |
| 1043 'message': 'Generating ''<(service_cc_file)'' file.' | 1043 'message': 'Generating ''<(service_cc_file)'' file.' |
| 1044 }, | 1044 }, |
| 1045 ] | 1045 ] |
| 1046 }, | 1046 }, |
| 1047 ] | 1047 ] |
| 1048 } | 1048 } |
| OLD | NEW |