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

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

Issue 890743002: Add missing library dependencies for Windows (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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 '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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 # enabled. That should be addressed using -A 241 # enabled. That should be addressed using -A
242 # versions of functions and adding necessary conversions. 242 # versions of functions and adding necessary conversions.
243 'configurations': { 243 'configurations': {
244 'Common_Base': { 244 'Common_Base': {
245 'msvs_configuration_attributes': { 245 'msvs_configuration_attributes': {
246 'CharacterSet': '0', 246 'CharacterSet': '0',
247 }, 247 },
248 }, 248 },
249 }, 249 },
250 'link_settings': { 250 'link_settings': {
251 'libraries': [ '-liphlpapi.lib' ], 251 'libraries': [ '-liphlpapi.lib', '-lws2_32.lib', '-lRpcrt4.lib' ],
252 }, 252 },
253 }], 253 }],
254 ['OS=="mac"', { 254 ['OS=="mac"', {
255 'link_settings': { 255 'link_settings': {
256 'libraries': [ 256 'libraries': [
257 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 257 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
258 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework', 258 '$(SDKROOT)/System/Library/Frameworks/CoreServices.framework',
259 ], 259 ],
260 }, 260 },
261 }], 261 }],
(...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
805 }], 805 }],
806 ['OS=="linux"', { 806 ['OS=="linux"', {
807 'cflags': [ 807 'cflags': [
808 '-fPIC', 808 '-fPIC',
809 ], 809 ],
810 }], 810 }],
811 ], 811 ],
812 }, 812 },
813 ], 813 ],
814 } 814 }
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