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

Side by Side Diff: samples/sample_extension/sample_extension.gyp

Issue 21015007: Fix sample_extension_test on 64-bit macos. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add fix for android compilation. Created 7 years, 4 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 | « runtime/bin/secure_socket_unsupported.cc ('k') | samples/tests/samples/samples.status » ('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 'includes': [
7 '../../runtime/tools/gyp/runtime-configurations.gypi',
8 ],
9 'target_defaults': {
10 'configurations': {
11 'Dart_arm_Base': {
12 'target_conditions': [
13 ['_toolset=="target"', {
14 'ldflags!': ['-static'],
zra 2013/07/30 16:07:13 Maybe add a TODO to remove this when we remove -st
15 }],
16 ]},
17 },
18 },
6 'targets': [ 19 'targets': [
7 { 20 {
8 'target_name': 'sample_extension', 21 'target_name': 'sample_extension',
9 'type': 'shared_library', 22 'type': 'shared_library',
10 'dependencies': [ 23 'dependencies': [
11 '../../runtime/dart-runtime.gyp:dart', 24 '../../runtime/dart-runtime.gyp:dart',
12 ], 25 ],
13 'include_dirs': [ 26 'include_dirs': [
14 '../../runtime', 27 '../../runtime',
15 ], 28 ],
(...skipping 20 matching lines...) Expand all
36 }], 49 }],
37 ['OS=="linux"', { 50 ['OS=="linux"', {
38 'cflags': [ 51 'cflags': [
39 '-fPIC', 52 '-fPIC',
40 ], 53 ],
41 }], 54 }],
42 ], 55 ],
43 }, 56 },
44 ], 57 ],
45 } 58 }
OLDNEW
« no previous file with comments | « runtime/bin/secure_socket_unsupported.cc ('k') | samples/tests/samples/samples.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698