| OLD | NEW |
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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': [ | 6 'includes': [ |
| 7 'vm/vm.gypi', | 7 'vm/vm.gypi', |
| 8 'bin/bin.gypi', | 8 'bin/bin.gypi', |
| 9 'third_party/double-conversion/src/double-conversion.gypi', | 9 'third_party/double-conversion/src/double-conversion.gypi', |
| 10 'third_party/jscre/jscre.gypi', | 10 'third_party/jscre/jscre.gypi', |
| 11 'tools/gyp/runtime-configurations.gypi', | 11 'tools/gyp/runtime-configurations.gypi', |
| 12 '../tools/gyp/source_filter.gypi', | 12 '../tools/gyp/source_filter.gypi', |
| 13 '../samples/sample_extension/sample_extension.gypi', | |
| 14 ], | 13 ], |
| 15 'targets': [ | 14 'targets': [ |
| 16 { | 15 { |
| 17 'target_name': 'libdart', | 16 'target_name': 'libdart', |
| 18 'type': 'static_library', | 17 'type': 'static_library', |
| 19 'dependencies': [ | 18 'dependencies': [ |
| 20 'libdart_lib', | 19 'libdart_lib', |
| 21 'libdart_vm', | 20 'libdart_vm', |
| 22 'libjscre', | 21 'libjscre', |
| 23 'libdouble_conversion', | 22 'libdouble_conversion', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 'DART_SHARED_LIB', | 60 'DART_SHARED_LIB', |
| 62 ], | 61 ], |
| 63 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
| 64 'include_dirs': [ | 63 'include_dirs': [ |
| 65 'include', | 64 'include', |
| 66 ], | 65 ], |
| 67 }, | 66 }, |
| 68 }, | 67 }, |
| 69 ], | 68 ], |
| 70 } | 69 } |
| OLD | NEW |