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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 '../tools/create_resources.py', | 362 '../tools/create_resources.py', |
363 '<@(_sources)', | 363 '<@(_sources)', |
364 ], | 364 ], |
365 'outputs': [ | 365 'outputs': [ |
366 '<(resources_cc_file)', | 366 '<(resources_cc_file)', |
367 ], | 367 ], |
368 'action': [ | 368 'action': [ |
369 'python', | 369 'python', |
370 'tools/create_resources.py', | 370 'tools/create_resources.py', |
371 '--output', '<(resources_cc_file)', | 371 '--output', '<(resources_cc_file)', |
| 372 '--outer_namespace', 'dart', |
| 373 '--inner_namespace', 'bin', |
| 374 '--table_name', 'service_bin', |
372 '--root_prefix', 'bin/', | 375 '--root_prefix', 'bin/', |
373 '<@(_sources)' | 376 '<@(_sources)' |
374 ], | 377 ], |
375 'message': 'Generating ''<(resources_cc_file)'' file.' | 378 'message': 'Generating ''<(resources_cc_file)'' file.' |
376 }, | 379 }, |
377 ] | 380 ] |
378 }, | 381 }, |
379 { | 382 { |
380 # dart binary with a snapshot of corelibs built in. | 383 # dart binary with a snapshot of corelibs built in. |
381 'target_name': 'dart', | 384 'target_name': 'dart', |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 }], | 635 }], |
633 ['OS=="linux"', { | 636 ['OS=="linux"', { |
634 'cflags': [ | 637 'cflags': [ |
635 '-fPIC', | 638 '-fPIC', |
636 ], | 639 ], |
637 }], | 640 }], |
638 ], | 641 ], |
639 }, | 642 }, |
640 ], | 643 ], |
641 } | 644 } |
OLD | NEW |