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

Side by Side Diff: runtime/bin/bin.gypi

Issue 1143573003: Add dart:io and dart:_builtin to the dartium snapshot so that vmservices can work, the previous app… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 7 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 | runtime/bin/vmservice_dartium.cc » ('j') | 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) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, 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 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)', 7 'gen_source_dir': '<(SHARED_INTERMEDIATE_DIR)',
8 8
9 'io_cc_file': '<(gen_source_dir)/io_gen.cc', 9 'io_cc_file': '<(gen_source_dir)/io_gen.cc',
10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc', 10 'io_patch_cc_file': '<(gen_source_dir)/io_patch_gen.cc',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 '../include', 189 '../include',
190 ], 190 ],
191 'includes': [ 191 'includes': [
192 'io_impl_sources.gypi', 192 'io_impl_sources.gypi',
193 'builtin_impl_sources.gypi', 193 'builtin_impl_sources.gypi',
194 ], 194 ],
195 'dependencies': [ 195 'dependencies': [
196 'generate_builtin_cc_file#host', 196 'generate_builtin_cc_file#host',
197 'generate_io_cc_file#host', 197 'generate_io_cc_file#host',
198 'generate_io_patch_cc_file#host', 198 'generate_io_patch_cc_file#host',
199 'generate_snapshot_file#host',
199 'generate_resources_cc_file#host', 200 'generate_resources_cc_file#host',
200 ], 201 ],
201 'sources': [ 202 'sources': [
202 'builtin_common.cc', 203 'builtin_common.cc',
203 'builtin_natives.cc', 204 'builtin_natives.cc',
204 'builtin.cc', 205 'builtin_nolib.cc',
205 'builtin.h', 206 'builtin.h',
206 'dartutils.cc', 207 'dartutils.cc',
207 'dartutils.h', 208 'dartutils.h',
208 'io_natives.cc', 209 'io_natives.cc',
209 'io_natives.h', 210 'io_natives.h',
210 'log_android.cc', 211 'log_android.cc',
211 'log_linux.cc', 212 'log_linux.cc',
212 'log_macos.cc', 213 'log_macos.cc',
213 'log_win.cc', 214 'log_win.cc',
214 'vmservice_dartium.h', 215 'vmservice_dartium.h',
215 'vmservice_dartium.cc', 216 'vmservice_dartium.cc',
216 'vmservice_impl.cc', 217 'vmservice_impl.cc',
217 'vmservice_impl.h', 218 'vmservice_impl.h',
218 '<(resources_cc_file)', 219 '<(resources_cc_file)',
219 # Include generated source files.
220 '<(builtin_cc_file)',
221 '<(io_cc_file)',
222 '<(io_patch_cc_file)',
223 ], 220 ],
224 'sources/': [ 221 'sources/': [
225 ['exclude', '_test\\.(cc|h)$'], 222 ['exclude', '_test\\.(cc|h)$'],
226 ], 223 ],
227 'conditions': [ 224 'conditions': [
228 ['dart_io_support==1 and dart_io_secure_socket==1', { 225 ['dart_io_support==1 and dart_io_secure_socket==1', {
229 'dependencies': [ 226 'dependencies': [
230 'bin/net/ssl.gyp:libssl_dart', 227 'bin/net/ssl.gyp:libssl_dart',
231 ], 228 ],
232 }], 229 }],
(...skipping 578 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 }], 808 }],
812 ['OS=="linux"', { 809 ['OS=="linux"', {
813 'cflags': [ 810 'cflags': [
814 '-fPIC', 811 '-fPIC',
815 ], 812 ],
816 }], 813 }],
817 ], 814 ],
818 }, 815 },
819 ], 816 ],
820 } 817 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/vmservice_dartium.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698