| 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.h', | 215 'vmservice_dartium.h', |
| 216 'vmservice_dartium.cc', | 216 'vmservice_dartium.cc', |
| 217 'vmservice_impl.cc', | 217 'vmservice_impl.cc', |
| 218 'vmservice_impl.h', | 218 'vmservice_impl.h', |
| 219 '<(resources_cc_file)', | 219 '<(resources_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 '../third_party/boringssl/boringssl_dart.gyp:boringssl', |
| 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 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 800 }], | 805 }], |
| 801 ['OS=="linux"', { | 806 ['OS=="linux"', { |
| 802 'cflags': [ | 807 'cflags': [ |
| 803 '-fPIC', | 808 '-fPIC', |
| 804 ], | 809 ], |
| 805 }], | 810 }], |
| 806 ], | 811 ], |
| 807 }, | 812 }, |
| 808 ], | 813 ], |
| 809 } | 814 } |
| OLD | NEW |