| 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 'libgen_in_cc_file': '../lib/libgen_in.cc', | 8 'libgen_in_cc_file': '../lib/libgen_in.cc', |
| 9 'builtin_in_cc_file': '../bin/builtin_in.cc', | 9 'builtin_in_cc_file': '../bin/builtin_in.cc', |
| 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', | 10 'async_cc_file': '<(gen_source_dir)/async_gen.cc', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 ], | 58 ], |
| 59 'conditions': [ | 59 'conditions': [ |
| 60 ['OS=="linux"', { | 60 ['OS=="linux"', { |
| 61 'link_settings': { | 61 'link_settings': { |
| 62 'libraries': [ | 62 'libraries': [ |
| 63 '-lpthread', | 63 '-lpthread', |
| 64 '-lrt', | 64 '-lrt', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 }], | 67 }], |
| 68 ['OS=="android" and _toolset=="host"', { |
| 69 'link_settings': { |
| 70 'libraries': [ |
| 71 '-lpthread', |
| 72 '-lrt', |
| 73 ], |
| 74 }, |
| 75 }], |
| 68 ['OS=="win"', { | 76 ['OS=="win"', { |
| 69 'sources/' : [ | 77 'sources/' : [ |
| 70 ['exclude', 'gdbjit.cc'], | 78 ['exclude', 'gdbjit.cc'], |
| 71 ], | 79 ], |
| 72 }], | 80 }], |
| 73 ['dart_vtune_support==0', { | 81 ['dart_vtune_support==0', { |
| 74 'sources/' : [ | 82 'sources/' : [ |
| 75 ['exclude', 'vtune\\.(cc|h)$'], | 83 ['exclude', 'vtune\\.(cc|h)$'], |
| 76 ], | 84 ], |
| 77 }], | 85 }], |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 '--table_name', 'service', | 1037 '--table_name', 'service', |
| 1030 '--root_prefix', 'vm/service/', | 1038 '--root_prefix', 'vm/service/', |
| 1031 '<@(_sources)' | 1039 '<@(_sources)' |
| 1032 ], | 1040 ], |
| 1033 'message': 'Generating ''<(service_cc_file)'' file.' | 1041 'message': 'Generating ''<(service_cc_file)'' file.' |
| 1034 }, | 1042 }, |
| 1035 ] | 1043 ] |
| 1036 }, | 1044 }, |
| 1037 ] | 1045 ] |
| 1038 } | 1046 } |
| OLD | NEW |