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

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

Issue 13811007: - Make the test_extension (a shared library) build in PIC. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc', 8 'io_patch_cc_file': '<(SHARED_INTERMEDIATE_DIR)/io_patch_gen.cc',
9 'builtin_in_cc_file': 'builtin_in.cc', 9 'builtin_in_cc_file': 'builtin_in.cc',
10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 10 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 'AdditionalDependencies': [ 'dart.lib' ], 528 'AdditionalDependencies': [ 'dart.lib' ],
529 'AdditionalLibraryDirectories': [ '<(PRODUCT_DIR)' ], 529 'AdditionalLibraryDirectories': [ '<(PRODUCT_DIR)' ],
530 }, 530 },
531 }, 531 },
532 }], 532 }],
533 ['OS=="mac"', { 533 ['OS=="mac"', {
534 'xcode_settings': { 534 'xcode_settings': {
535 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ], 535 'OTHER_LDFLAGS': [ '-undefined', 'dynamic_lookup' ],
536 }, 536 },
537 }], 537 }],
538 ['OS=="linux"', {
539 'cflags': [
540 '-fPIC',
541 ],
542 }],
538 ], 543 ],
539 }, 544 },
540 ], 545 ],
541 } 546 }
542 547
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