| Index: runtime/dart-runtime.gyp
|
| diff --git a/runtime/dart-runtime.gyp b/runtime/dart-runtime.gyp
|
| index d9c1b160701f90f04ea319a3af6f73991894b5c5..45f4967302ef239cde39db1a720877889e3edc36 100644
|
| --- a/runtime/dart-runtime.gyp
|
| +++ b/runtime/dart-runtime.gyp
|
| @@ -14,7 +14,19 @@
|
| 'variables': {
|
| 'version_in_cc_file': 'vm/version_in.cc',
|
| 'version_cc_file': '<(SHARED_INTERMEDIATE_DIR)/version.cc',
|
| +
|
| + # Disable the OpenGLUI embedder by default on desktop OSes. Note,
|
| + # to build this on the desktop, you need GLUT installed.
|
| + 'enable_openglui%': 0,
|
| },
|
| + 'conditions': [
|
| + ['OS=="android" or enable_openglui==1', {
|
| + 'includes': [
|
| + 'embedders/openglui/openglui_embedder.gypi',
|
| + ],
|
| + },
|
| + ],
|
| + ],
|
| 'targets': [
|
| {
|
| 'target_name': 'libdart',
|
|
|