| 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 '--root_prefix', 'bin/', | 538 '--root_prefix', 'bin/', |
| 539 '<@(_sources)' | 539 '<@(_sources)' |
| 540 ], | 540 ], |
| 541 'message': 'Generating ''<(resources_cc_file)'' file.' | 541 'message': 'Generating ''<(resources_cc_file)'' file.' |
| 542 }, | 542 }, |
| 543 ] | 543 ] |
| 544 }, | 544 }, |
| 545 { | 545 { |
| 546 'target_name': 'generate_bootstrap_resources_cc_file', | 546 'target_name': 'generate_bootstrap_resources_cc_file', |
| 547 'type': 'none', | 547 'type': 'none', |
| 548 'dependencies': [ |
| 549 'bin/zlib.gyp:zlib_dart', |
| 550 ], |
| 548 'toolsets':['host'], | 551 'toolsets':['host'], |
| 549 'includes': [ | 552 'includes': [ |
| 550 'vmservice/vmservice_sources.gypi', | 553 'vmservice/vmservice_sources.gypi', |
| 551 ], | 554 ], |
| 552 'actions': [ | 555 'actions': [ |
| 553 { | 556 { |
| 554 'action_name': 'generate_resources_cc', | 557 'action_name': 'generate_resources_cc', |
| 555 'inputs': [ | 558 'inputs': [ |
| 556 '../tools/create_resources.py', | 559 '../tools/create_resources.py', |
| 557 '<@(_sources)', | 560 '<@(_sources)', |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 955 }], | 958 }], |
| 956 ['OS=="linux"', { | 959 ['OS=="linux"', { |
| 957 'cflags': [ | 960 'cflags': [ |
| 958 '-fPIC', | 961 '-fPIC', |
| 959 ], | 962 ], |
| 960 }], | 963 }], |
| 961 ], | 964 ], |
| 962 }, | 965 }, |
| 963 ], | 966 ], |
| 964 } | 967 } |
| OLD | NEW |