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

Side by Side Diff: runtime/dart-runtime.gyp

Issue 11971026: Build the openglui embedder conditionally (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix comment Created 7 years, 11 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 | « no previous file | no next file » | 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) 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', 12 '../tools/gyp/source_filter.gypi',
13 ], 13 ],
14 'variables': { 14 'variables': {
15 'version_in_cc_file': 'vm/version_in.cc', 15 'version_in_cc_file': 'vm/version_in.cc',
16 'version_cc_file': '<(SHARED_INTERMEDIATE_DIR)/version.cc', 16 'version_cc_file': '<(SHARED_INTERMEDIATE_DIR)/version.cc',
17
18 # Disable the OpenGLUI embedder by default on desktop OSes. Note,
19 # to build this on the desktop, you need GLUT installed.
20 'enable_openglui%': 0,
17 }, 21 },
22 'conditions': [
23 ['OS=="android" or enable_openglui==1', {
24 'includes': [
25 'embedders/openglui/openglui_embedder.gypi',
26 ],
27 },
28 ],
29 ],
18 'targets': [ 30 'targets': [
19 { 31 {
20 'target_name': 'libdart', 32 'target_name': 'libdart',
21 'type': 'static_library', 33 'type': 'static_library',
22 'dependencies': [ 34 'dependencies': [
23 'libdart_lib', 35 'libdart_lib',
24 'libdart_vm', 36 'libdart_vm',
25 'libjscre', 37 'libjscre',
26 'libdouble_conversion', 38 'libdouble_conversion',
27 'generate_version_cc_file', 39 'generate_version_cc_file',
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 }, 110 },
99 { 111 {
100 'target_name': 'runtime_packages', 112 'target_name': 'runtime_packages',
101 'type': 'none', 113 'type': 'none',
102 'dependencies': [ 114 'dependencies': [
103 '../pkg/pkg.gyp:pkg_packages', 115 '../pkg/pkg.gyp:pkg_packages',
104 ], 116 ],
105 }, 117 },
106 ], 118 ],
107 } 119 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698