Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 } |
| OLD | NEW |