Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: runtime/vm/vm.gypi

Issue 678453003: - Make sure the VM actually asks for libdl when being linked. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 ], 55 ],
56 'include_dirs': [ 56 'include_dirs': [
57 '..', 57 '..',
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 '-ldl',
65 ], 66 ],
66 }, 67 },
67 }], 68 }],
68 ['OS=="android" and _toolset=="host"', { 69 ['OS=="android" and _toolset=="host"', {
69 'link_settings': { 70 'link_settings': {
70 'libraries': [ 71 'libraries': [
71 '-lpthread', 72 '-lpthread',
72 '-lrt', 73 '-lrt',
74 '-ldl',
73 ], 75 ],
74 }, 76 },
75 }], 77 }],
76 ['OS=="win"', { 78 ['OS=="win"', {
77 'sources/' : [ 79 'sources/' : [
78 ['exclude', 'gdbjit.cc'], 80 ['exclude', 'gdbjit.cc'],
79 ], 81 ],
80 }], 82 }],
81 ['dart_vtune_support==0', { 83 ['dart_vtune_support==0', {
82 'sources/' : [ 84 'sources/' : [
(...skipping 954 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 '--table_name', 'service', 1039 '--table_name', 'service',
1038 '--root_prefix', 'vm/service/', 1040 '--root_prefix', 'vm/service/',
1039 '<@(_sources)' 1041 '<@(_sources)'
1040 ], 1042 ],
1041 'message': 'Generating ''<(service_cc_file)'' file.' 1043 'message': 'Generating ''<(service_cc_file)'' file.'
1042 }, 1044 },
1043 ] 1045 ]
1044 }, 1046 },
1045 ] 1047 ]
1046 } 1048 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698