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

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

Issue 9452013: Use correct format for gyp file when adding -ldl linker flag. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months 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 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc', 7 'io_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_gen.cc',
8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc', 8 'json_cc_file': '<(SHARED_INTERMEDIATE_DIR)/json_gen.cc',
9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc', 9 'uri_cc_file': '<(SHARED_INTERMEDIATE_DIR)/uri_gen.cc',
10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc', 10 'utf8_cc_file': '<(SHARED_INTERMEDIATE_DIR)/utf8_gen.cc',
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 'builtin_impl_sources.gypi', 212 'builtin_impl_sources.gypi',
213 '../platform/platform_sources.gypi', 213 '../platform/platform_sources.gypi',
214 ], 214 ],
215 'sources/': [ 215 'sources/': [
216 ['exclude', '_test\\.(cc|h)$'], 216 ['exclude', '_test\\.(cc|h)$'],
217 ], 217 ],
218 'conditions': [ 218 'conditions': [
219 ['OS=="win"', {'sources/' : [ 219 ['OS=="win"', {'sources/' : [
220 ['exclude', 'fdutils.h'], 220 ['exclude', 'fdutils.h'],
221 ]}], 221 ]}],
222 ['OS=="linux"', 222 ['OS=="linux"', {
223 {'ldflags': ['-ldl',], 223 'link_settings': {
224 'libraries': [
225 '-ldl',
226 ],
227 },
224 }], 228 }],
225 ], 229 ],
226 }, 230 },
227 { 231 {
228 'target_name': 'libdart_withcore', 232 'target_name': 'libdart_withcore',
229 'type': 'static_library', 233 'type': 'static_library',
230 'dependencies': [ 234 'dependencies': [
231 'libdart_lib_withcore', 235 'libdart_lib_withcore',
232 'libdart_vm', 236 'libdart_vm',
233 'libjscre', 237 'libjscre',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 ], 424 ],
421 'defines': [ 425 'defines': [
422 'DART_SHARED_LIB', 426 'DART_SHARED_LIB',
423 ], 427 ],
424 }, 428 },
425 ], 429 ],
426 }], 430 }],
427 ], 431 ],
428 } 432 }
429 433
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