| 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 'tools/gyp/runtime-configurations.gypi', | 7 'tools/gyp/runtime-configurations.gypi', |
| 8 'vm/vm.gypi', | 8 'vm/vm.gypi', |
| 9 'bin/bin.gypi', | 9 'bin/bin.gypi', |
| 10 'third_party/double-conversion/src/double-conversion.gypi', | 10 'third_party/double-conversion/src/double-conversion.gypi', |
| 11 'third_party/jscre/jscre.gypi', | 11 'third_party/jscre/jscre.gypi', |
| 12 '../tools/gyp/source_filter.gypi', | |
| 13 ], | 12 ], |
| 14 'variables': { | 13 'variables': { |
| 15 'version_in_cc_file': 'vm/version_in.cc', | 14 'version_in_cc_file': 'vm/version_in.cc', |
| 16 'version_cc_file': '<(SHARED_INTERMEDIATE_DIR)/version.cc', | 15 'version_cc_file': '<(SHARED_INTERMEDIATE_DIR)/version.cc', |
| 17 | 16 |
| 18 # Disable the OpenGLUI embedder by default on desktop OSes. Note, | 17 # Disable the OpenGLUI embedder by default on desktop OSes. Note, |
| 19 # to build this on the desktop, you need GLUT installed. | 18 # to build this on the desktop, you need GLUT installed. |
| 20 'enable_openglui%': 0, | 19 'enable_openglui%': 0, |
| 21 }, | 20 }, |
| 22 'conditions': [ | 21 'conditions': [ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 }, | 109 }, |
| 111 { | 110 { |
| 112 'target_name': 'runtime_packages', | 111 'target_name': 'runtime_packages', |
| 113 'type': 'none', | 112 'type': 'none', |
| 114 'dependencies': [ | 113 'dependencies': [ |
| 115 '../pkg/pkg.gyp:pkg_packages', | 114 '../pkg/pkg.gyp:pkg_packages', |
| 116 ], | 115 ], |
| 117 }, | 116 }, |
| 118 ], | 117 ], |
| 119 } | 118 } |
| OLD | NEW |