| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 'target_name': 'libvmservice_io', | 182 'target_name': 'libvmservice_io', |
| 183 'type': 'static_library', | 183 'type': 'static_library', |
| 184 'toolsets': ['host', 'target'], | 184 'toolsets': ['host', 'target'], |
| 185 'include_dirs': [ | 185 'include_dirs': [ |
| 186 '..', | 186 '..', |
| 187 '../include', | 187 '../include', |
| 188 ], | 188 ], |
| 189 'includes': [ | 189 'includes': [ |
| 190 'io_impl_sources.gypi', | 190 'io_impl_sources.gypi', |
| 191 'builtin_impl_sources.gypi', | 191 'builtin_impl_sources.gypi', |
| 192 '../platform/platform_sources.gypi', | |
| 193 ], | 192 ], |
| 194 'dependencies': [ | 193 'dependencies': [ |
| 195 'generate_builtin_cc_file#host', | 194 'generate_builtin_cc_file#host', |
| 196 'generate_io_cc_file#host', | 195 'generate_io_cc_file#host', |
| 197 'generate_io_patch_cc_file#host', | 196 'generate_io_patch_cc_file#host', |
| 198 'generate_snapshot_file#host', | 197 'generate_snapshot_file#host', |
| 199 'generate_resources_cc_file#host', | 198 'generate_resources_cc_file#host', |
| 200 ], | 199 ], |
| 201 'sources': [ | 200 'sources': [ |
| 202 'builtin_common.cc', | 201 'builtin_common.cc', |
| (...skipping 603 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 }], | 805 }], |
| 807 ['OS=="linux"', { | 806 ['OS=="linux"', { |
| 808 'cflags': [ | 807 'cflags': [ |
| 809 '-fPIC', | 808 '-fPIC', |
| 810 ], | 809 ], |
| 811 }], | 810 }], |
| 812 ], | 811 ], |
| 813 }, | 812 }, |
| 814 ], | 813 ], |
| 815 } | 814 } |
| OLD | NEW |