| 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 23 matching lines...) Expand all Loading... |
| 34 'outputs': [ | 34 'outputs': [ |
| 35 '<(builtin_cc_file)', | 35 '<(builtin_cc_file)', |
| 36 ], | 36 ], |
| 37 'action': [ | 37 'action': [ |
| 38 'python', | 38 'python', |
| 39 'tools/gen_library_src_paths.py', | 39 'tools/gen_library_src_paths.py', |
| 40 '--output', '<(builtin_cc_file)', | 40 '--output', '<(builtin_cc_file)', |
| 41 '--input_cc', '<(builtin_in_cc_file)', | 41 '--input_cc', '<(builtin_in_cc_file)', |
| 42 '--include', 'bin/builtin.h', | 42 '--include', 'bin/builtin.h', |
| 43 '--var_name', 'dart::bin::Builtin::builtin_source_paths_', | 43 '--var_name', 'dart::bin::Builtin::builtin_source_paths_', |
| 44 '--library_name', 'dart:builtin', | 44 '--library_name', 'dart:_builtin', |
| 45 '<@(_sources)', | 45 '<@(_sources)', |
| 46 ], | 46 ], |
| 47 'message': 'Generating ''<(builtin_cc_file)'' file.' | 47 'message': 'Generating ''<(builtin_cc_file)'' file.' |
| 48 }, | 48 }, |
| 49 ] | 49 ] |
| 50 }, | 50 }, |
| 51 { | 51 { |
| 52 'target_name': 'generate_io_cc_file', | 52 'target_name': 'generate_io_cc_file', |
| 53 'type': 'none', | 53 'type': 'none', |
| 54 'toolsets':['host'], | 54 'toolsets':['host'], |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 }], | 583 }], |
| 584 ['OS=="linux"', { | 584 ['OS=="linux"', { |
| 585 'cflags': [ | 585 'cflags': [ |
| 586 '-fPIC', | 586 '-fPIC', |
| 587 ], | 587 ], |
| 588 }], | 588 }], |
| 589 ], | 589 ], |
| 590 }, | 590 }, |
| 591 ], | 591 ], |
| 592 } | 592 } |
| OLD | NEW |