| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 ] | 55 ] |
| 56 }, | 56 }, |
| 57 { | 57 { |
| 58 'target_name': 'generate_io_cc_file', | 58 'target_name': 'generate_io_cc_file', |
| 59 'type': 'none', | 59 'type': 'none', |
| 60 'toolsets':['host'], | 60 'toolsets':['host'], |
| 61 'sources': [ | 61 'sources': [ |
| 62 '../../sdk/lib/io/io.dart', | 62 '../../sdk/lib/io/io.dart', |
| 63 ], | 63 ], |
| 64 'includes': [ | 64 'includes': [ |
| 65 '../../sdk/lib/io/iolib_sources.gypi', | 65 '../../sdk/lib/io/io_sources.gypi', |
| 66 ], | 66 ], |
| 67 'actions': [ | 67 'actions': [ |
| 68 { | 68 { |
| 69 'action_name': 'generate_io_cc', | 69 'action_name': 'generate_io_cc', |
| 70 'inputs': [ | 70 'inputs': [ |
| 71 '../tools/gen_library_src_paths.py', | 71 '../tools/gen_library_src_paths.py', |
| 72 '<(builtin_in_cc_file)', | 72 '<(builtin_in_cc_file)', |
| 73 '<@(_sources)', | 73 '<@(_sources)', |
| 74 ], | 74 ], |
| 75 'outputs': [ | 75 'outputs': [ |
| (...skipping 882 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 958 }], | 958 }], |
| 959 ['OS=="linux"', { | 959 ['OS=="linux"', { |
| 960 'cflags': [ | 960 'cflags': [ |
| 961 '-fPIC', | 961 '-fPIC', |
| 962 ], | 962 ], |
| 963 }], | 963 }], |
| 964 ], | 964 ], |
| 965 }, | 965 }, |
| 966 ], | 966 ], |
| 967 } | 967 } |
| OLD | NEW |