| 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 | 8 |
| 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', | 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', |
| 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', | 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', |
| (...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 508 ], | 508 ], |
| 509 'message': 'Generating ''<(observatory_assets_cc_file)'' file.' | 509 'message': 'Generating ''<(observatory_assets_cc_file)'' file.' |
| 510 }, | 510 }, |
| 511 ] | 511 ] |
| 512 }, | 512 }, |
| 513 { | 513 { |
| 514 'target_name': 'generate_resources_cc_file', | 514 'target_name': 'generate_resources_cc_file', |
| 515 'type': 'none', | 515 'type': 'none', |
| 516 'toolsets':['host'], | 516 'toolsets':['host'], |
| 517 'includes': [ | 517 'includes': [ |
| 518 'resources_sources.gypi', | 518 'vmservice/vmservice_sources.gypi', |
| 519 ], | 519 ], |
| 520 'actions': [ | 520 'actions': [ |
| 521 { | 521 { |
| 522 'action_name': 'generate_resources_cc', | 522 'action_name': 'generate_resources_cc', |
| 523 'inputs': [ | 523 'inputs': [ |
| 524 '../tools/create_resources.py', | 524 '../tools/create_resources.py', |
| 525 '<@(_sources)', | 525 '<@(_sources)', |
| 526 ], | 526 ], |
| 527 'outputs': [ | 527 'outputs': [ |
| 528 '<(resources_cc_file)', | 528 '<(resources_cc_file)', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 539 ], | 539 ], |
| 540 'message': 'Generating ''<(resources_cc_file)'' file.' | 540 'message': 'Generating ''<(resources_cc_file)'' file.' |
| 541 }, | 541 }, |
| 542 ] | 542 ] |
| 543 }, | 543 }, |
| 544 { | 544 { |
| 545 'target_name': 'generate_bootstrap_resources_cc_file', | 545 'target_name': 'generate_bootstrap_resources_cc_file', |
| 546 'type': 'none', | 546 'type': 'none', |
| 547 'toolsets':['host'], | 547 'toolsets':['host'], |
| 548 'includes': [ | 548 'includes': [ |
| 549 'resources_sources.gypi', | 549 'vmservice/vmservice_sources.gypi', |
| 550 ], | 550 ], |
| 551 'actions': [ | 551 'actions': [ |
| 552 { | 552 { |
| 553 'action_name': 'generate_resources_cc', | 553 'action_name': 'generate_resources_cc', |
| 554 'inputs': [ | 554 'inputs': [ |
| 555 '../tools/create_resources.py', | 555 '../tools/create_resources.py', |
| 556 '<@(_sources)', | 556 '<@(_sources)', |
| 557 ], | 557 ], |
| 558 'outputs': [ | 558 'outputs': [ |
| 559 '<(bootstrap_resources_cc_file)', | 559 '<(bootstrap_resources_cc_file)', |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 }], | 892 }], |
| 893 ['OS=="linux"', { | 893 ['OS=="linux"', { |
| 894 'cflags': [ | 894 'cflags': [ |
| 895 '-fPIC', | 895 '-fPIC', |
| 896 ], | 896 ], |
| 897 }], | 897 }], |
| 898 ], | 898 ], |
| 899 }, | 899 }, |
| 900 ], | 900 ], |
| 901 } | 901 } |
| OLD | NEW |