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

Side by Side Diff: vm/vm.gypi

Issue 8772016: Refactor the gypi files to eliminate some redundancy. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 9 years 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
« bin/bin.gypi ('K') | « bin/bin_sources.gypi ('k') | 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 'variables': { 6 'variables': {
7 'corelib_in_cc_file': 'corelib_in.cc', 7 'corelib_in_cc_file': 'corelib_in.cc',
8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc', 8 'corelib_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_gen.cc',
9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc', 9 'corelib_impl_in_cc_file': 'corelib_impl_in.cc',
10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc', 10 'corelib_impl_cc_file': '<(SHARED_INTERMEDIATE_DIR)/corelib_impl_gen.cc',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 '../lib/lib_impl_sources.gypi', 84 '../lib/lib_impl_sources.gypi',
85 ], 85 ],
86 'sources': [ 86 'sources': [
87 'bootstrap_nocorelib.cc', 87 'bootstrap_nocorelib.cc',
88 ], 88 ],
89 'include_dirs': [ 89 'include_dirs': [
90 '..', 90 '..',
91 ], 91 ],
92 }, 92 },
93 { 93 {
94 'target_name': 'libdart_api',
95 'type': 'static_library',
96 'include_dirs': [
97 '..',
98 ],
99 'sources': [
100 '../vm/dart_api_impl.cc',
101 ],
102 },
103 {
104 'target_name': 'generate_corelib_cc_file', 94 'target_name': 'generate_corelib_cc_file',
105 'type': 'none', 95 'type': 'none',
106 'conditions': [ 96 'conditions': [
107 ['OS=="win"', { 97 ['OS=="win"', {
108 'msvs_cygwin_dirs': ['<(cygwin_dir)'], 98 'msvs_cygwin_dirs': ['<(cygwin_dir)'],
109 }], 99 }],
110 ], 100 ],
111 'includes': [ 101 'includes': [
112 # Load the runtime implementation sources. 102 # Load the runtime implementation sources.
113 '../lib/lib_sources.gypi', 103 '../lib/lib_sources.gypi',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 '--output', '<(snapshot_test_dat_file)', 201 '--output', '<(snapshot_test_dat_file)',
212 '--input_cc', '<(snapshot_test_in_dat_file)', 202 '--input_cc', '<(snapshot_test_in_dat_file)',
213 '<(snapshot_test_dart_file)', 203 '<(snapshot_test_dart_file)',
214 ], 204 ],
215 'message': 'Generating ''<(snapshot_test_dat_file)'' file.' 205 'message': 'Generating ''<(snapshot_test_dat_file)'' file.'
216 }, 206 },
217 ] 207 ]
218 }, 208 },
219 ] 209 ]
220 } 210 }
OLDNEW
« bin/bin.gypi ('K') | « bin/bin_sources.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698