| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 'includes': [ | 288 'includes': [ |
| 289 'io_impl_sources.gypi', | 289 'io_impl_sources.gypi', |
| 290 ], | 290 ], |
| 291 'sources': [ | 291 'sources': [ |
| 292 'io_natives.h', | 292 'io_natives.h', |
| 293 'io_natives.cc', | 293 'io_natives.cc', |
| 294 ], | 294 ], |
| 295 'conditions': [ | 295 'conditions': [ |
| 296 ['dart_io_support==1', { | 296 ['dart_io_support==1', { |
| 297 'dependencies': [ | 297 'dependencies': [ |
| 298 'bin/net/zlib.gyp:zlib_dart', | 298 'bin/zlib.gyp:zlib_dart', |
| 299 ], | 299 ], |
| 300 }], | 300 }], |
| 301 ['dart_io_support==1 and dart_io_secure_socket==1', { | 301 ['dart_io_support==1 and dart_io_secure_socket==1', { |
| 302 'dependencies': [ | 302 'dependencies': [ |
| 303 '../third_party/boringssl/boringssl_dart.gyp:boringssl', | 303 '../third_party/boringssl/boringssl_dart.gyp:boringssl', |
| 304 ], | 304 ], |
| 305 }], | 305 }], |
| 306 ['dart_io_secure_socket==0', { | 306 ['dart_io_secure_socket==0', { |
| 307 'defines': [ | 307 'defines': [ |
| 308 'DART_IO_SECURE_SOCKET_DISABLED' | 308 'DART_IO_SECURE_SOCKET_DISABLED' |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 }], | 805 }], |
| 806 ['OS=="linux"', { | 806 ['OS=="linux"', { |
| 807 'cflags': [ | 807 'cflags': [ |
| 808 '-fPIC', | 808 '-fPIC', |
| 809 ], | 809 ], |
| 810 }], | 810 }], |
| 811 ], | 811 ], |
| 812 }, | 812 }, |
| 813 ], | 813 ], |
| 814 } | 814 } |
| OLD | NEW |