| 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 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 217 'io_natives.h', | 217 'io_natives.h', |
| 218 'log_android.cc', | 218 'log_android.cc', |
| 219 'log_linux.cc', | 219 'log_linux.cc', |
| 220 'log_macos.cc', | 220 'log_macos.cc', |
| 221 'log_win.cc', | 221 'log_win.cc', |
| 222 'vmservice_dartium.h', | 222 'vmservice_dartium.h', |
| 223 'vmservice_dartium.cc', | 223 'vmservice_dartium.cc', |
| 224 'vmservice_impl.cc', | 224 'vmservice_impl.cc', |
| 225 'vmservice_impl.h', | 225 'vmservice_impl.h', |
| 226 '<(resources_cc_file)', | 226 '<(resources_cc_file)', |
| 227 '<(observatory_assets_cc_file)', |
| 227 ], | 228 ], |
| 228 'sources/': [ | 229 'sources/': [ |
| 229 ['exclude', '_test\\.(cc|h)$'], | 230 ['exclude', '_test\\.(cc|h)$'], |
| 230 ], | 231 ], |
| 231 'conditions': [ | 232 'conditions': [ |
| 232 ['dart_io_support==1 and dart_io_secure_socket==1', { | 233 ['dart_io_support==1 and dart_io_secure_socket==1', { |
| 233 'dependencies': [ | 234 'dependencies': [ |
| 234 '../third_party/boringssl/boringssl_dart.gyp:boringssl', | 235 '../third_party/boringssl/boringssl_dart.gyp:boringssl', |
| 235 ], | 236 ], |
| 236 }], | 237 }], |
| (...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 }], | 848 }], |
| 848 ['OS=="linux"', { | 849 ['OS=="linux"', { |
| 849 'cflags': [ | 850 'cflags': [ |
| 850 '-fPIC', | 851 '-fPIC', |
| 851 ], | 852 ], |
| 852 }], | 853 }], |
| 853 ], | 854 ], |
| 854 }, | 855 }, |
| 855 ], | 856 ], |
| 856 } | 857 } |
| OLD | NEW |