| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 'vmservice_dartium.cc', | 215 'vmservice_dartium.cc', |
| 216 'vmservice_impl.cc', | 216 'vmservice_impl.cc', |
| 217 'vmservice_impl.h', | 217 'vmservice_impl.h', |
| 218 '<(resources_cc_file)', | 218 '<(resources_cc_file)', |
| 219 '<(snapshot_cc_file)', | 219 '<(snapshot_cc_file)', |
| 220 ], | 220 ], |
| 221 'sources/': [ | 221 'sources/': [ |
| 222 ['exclude', '_test\\.(cc|h)$'], | 222 ['exclude', '_test\\.(cc|h)$'], |
| 223 ], | 223 ], |
| 224 'conditions': [ | 224 'conditions': [ |
| 225 ['dart_io_support==1 and dart_io_secure_socket==1', { |
| 226 'dependencies': [ |
| 227 'bin/net/ssl.gyp:libssl_dart', |
| 228 ], |
| 229 }], |
| 225 ['dart_io_secure_socket==0', { | 230 ['dart_io_secure_socket==0', { |
| 226 'defines': [ | 231 'defines': [ |
| 227 'DART_IO_SECURE_SOCKET_DISABLED' | 232 'DART_IO_SECURE_SOCKET_DISABLED' |
| 228 ], | 233 ], |
| 229 }], | 234 }], |
| 230 ['OS=="win"', { | 235 ['OS=="win"', { |
| 231 'sources/' : [ | 236 'sources/' : [ |
| 232 ['exclude', 'fdutils.h'], | 237 ['exclude', 'fdutils.h'], |
| 233 ], | 238 ], |
| 234 # TODO(antonm): fix the implementation. | 239 # TODO(antonm): fix the implementation. |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 }], | 806 }], |
| 802 ['OS=="linux"', { | 807 ['OS=="linux"', { |
| 803 'cflags': [ | 808 'cflags': [ |
| 804 '-fPIC', | 809 '-fPIC', |
| 805 ], | 810 ], |
| 806 }], | 811 }], |
| 807 ], | 812 ], |
| 808 }, | 813 }, |
| 809 ], | 814 ], |
| 810 } | 815 } |
| OLD | NEW |