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

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

Issue 15023007: Fix Clank+Dart compilation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 7 years, 7 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 | runtime/tools/gyp/runtime-configurations.gypi » ('j') | 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 # We place most generated source files in LIB_DIR (rather than, say 7 # We place most generated source files in LIB_DIR (rather than, say
8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids 8 # SHARED_INTERMEDIATE_DIR) because it is toolset specific. This avoids
9 # two problems. First, if a generated source file has architecture specific 9 # two problems. First, if a generated source file has architecture specific
10 # code, we'll get two different files in two different directories. Second, 10 # code, we'll get two different files in two different directories. Second,
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 '<(io_patch_cc_file)', 278 '<(io_patch_cc_file)',
279 ], 279 ],
280 'conditions': [ 280 'conditions': [
281 ['OS=="win"', { 281 ['OS=="win"', {
282 'link_settings': { 282 'link_settings': {
283 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 283 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
284 }, 284 },
285 }], 285 }],
286 ['OS=="android"', { 286 ['OS=="android"', {
287 'link_settings': { 287 'link_settings': {
288 'libraries': [ '-llog' ], 288 'libraries': [ '-ldl', '-lrt' ],
289 }, 289 },
290 }] 290 }]
291 ], 291 ],
292 }, 292 },
293 { 293 {
294 # Generate snapshot bin file. 294 # Generate snapshot bin file.
295 'target_name': 'generate_snapshot_bin', 295 'target_name': 'generate_snapshot_bin',
296 'type': 'none', 296 'type': 'none',
297 'toolsets':['host'], 297 'toolsets':['host'],
298 'dependencies': [ 298 'dependencies': [
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
566 ['OS=="linux"', { 566 ['OS=="linux"', {
567 'cflags': [ 567 'cflags': [
568 '-fPIC', 568 '-fPIC',
569 ], 569 ],
570 }], 570 }],
571 ], 571 ],
572 }, 572 },
573 ], 573 ],
574 } 574 }
575 575
OLDNEW
« no previous file with comments | « no previous file | runtime/tools/gyp/runtime-configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698