| 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 22 matching lines...) Expand all Loading... |
| 33 ], | 33 ], |
| 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', |
| (...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 }], | 590 }], |
| 591 ['OS=="linux"', { | 591 ['OS=="linux"', { |
| 592 'cflags': [ | 592 'cflags': [ |
| 593 '-fPIC', | 593 '-fPIC', |
| 594 ], | 594 ], |
| 595 }], | 595 }], |
| 596 ], | 596 ], |
| 597 }, | 597 }, |
| 598 ], | 598 ], |
| 599 } | 599 } |
| OLD | NEW |