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

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

Issue 169753003: Don't depend on libdart_io in run_vm_tests and gen_snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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/builtin_impl_sources.gypi » ('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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 'libraries': [ 163 'libraries': [
164 '-ldl', 164 '-ldl',
165 ], 165 ],
166 }, 166 },
167 }], 167 }],
168 ], 168 ],
169 }, 169 },
170 { 170 {
171 'target_name': 'libdart_io', 171 'target_name': 'libdart_io',
172 'type': 'static_library', 172 'type': 'static_library',
173 'toolsets':['target', 'host'],
174 'include_dirs': [ 173 'include_dirs': [
175 '..', 174 '..',
176 ], 175 ],
177 'includes': [ 176 'includes': [
178 'io_impl_sources.gypi', 177 'io_impl_sources.gypi',
179 ], 178 ],
180 'sources': [ 179 'sources': [
181 'io_natives.h', 180 'io_natives.h',
182 'io_natives.cc', 181 'io_natives.cc',
183 ], 182 ],
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 ], 248 ],
250 }, 249 },
251 { 250 {
252 # Completely statically linked binary for generating snapshots. 251 # Completely statically linked binary for generating snapshots.
253 'target_name': 'gen_snapshot', 252 'target_name': 'gen_snapshot',
254 'type': 'executable', 253 'type': 'executable',
255 'toolsets':['host'], 254 'toolsets':['host'],
256 'dependencies': [ 255 'dependencies': [
257 'libdart_withcore', 256 'libdart_withcore',
258 'libdart_builtin', 257 'libdart_builtin',
259 'libdart_io',
260 ], 258 ],
261 'include_dirs': [ 259 'include_dirs': [
262 '..', 260 '..',
263 ], 261 ],
264 'sources': [ 262 'sources': [
265 'gen_snapshot.cc', 263 'gen_snapshot.cc',
266 # Very limited native resolver provided. 264 # Very limited native resolver provided.
267 'builtin_gen_snapshot.cc', 265 'builtin_gen_snapshot.cc',
268 'builtin.cc', 266 'builtin.cc',
269 'builtin.h', 267 'builtin.h',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
485 { 483 {
486 'target_name': 'process_test', 484 'target_name': 'process_test',
487 'type': 'executable', 485 'type': 'executable',
488 'sources': [ 486 'sources': [
489 'process_test.cc', 487 'process_test.cc',
490 ] 488 ]
491 }, 489 },
492 { 490 {
493 'target_name': 'run_vm_tests', 491 'target_name': 'run_vm_tests',
494 'type': 'executable', 492 'type': 'executable',
495 'toolsets':['target'],
496 'dependencies': [ 493 'dependencies': [
497 'libdart_withcore', 494 'libdart_withcore',
498 'libdart_builtin', 495 'libdart_builtin',
499 'libdart_io', 496 'libdart_io',
500 'generate_snapshot_file#host', 497 'generate_snapshot_file#host',
501 'generate_snapshot_test_dat_file#host', 498 'generate_snapshot_test_dat_file#host',
502 ], 499 ],
503 'include_dirs': [ 500 'include_dirs': [
504 '..', 501 '..',
505 '<(gen_source_dir)', 502 '<(gen_source_dir)',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 }], 538 }],
542 ], 539 ],
543 }, 540 },
544 { 541 {
545 'target_name': 'run_vm_tests.host', 542 'target_name': 'run_vm_tests.host',
546 'type': 'executable', 543 'type': 'executable',
547 'toolsets':['host'], 544 'toolsets':['host'],
548 'dependencies': [ 545 'dependencies': [
549 'libdart_withcore', 546 'libdart_withcore',
550 'libdart_builtin', 547 'libdart_builtin',
551 'libdart_io',
552 'generate_snapshot_file#host', 548 'generate_snapshot_file#host',
553 'generate_snapshot_test_dat_file#host', 549 'generate_snapshot_test_dat_file#host',
554 ], 550 ],
555 'include_dirs': [ 551 'include_dirs': [
556 '..', 552 '..',
557 '<(gen_source_dir)', 553 '<(gen_source_dir)',
558 ], 554 ],
559 'sources': [ 555 'sources': [
560 'run_vm_tests.cc', 556 'run_vm_tests.cc',
561 'builtin_natives.cc', 557 'builtin_natives.cc',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
633 }], 629 }],
634 ['OS=="linux"', { 630 ['OS=="linux"', {
635 'cflags': [ 631 'cflags': [
636 '-fPIC', 632 '-fPIC',
637 ], 633 ],
638 }], 634 }],
639 ], 635 ],
640 }, 636 },
641 ], 637 ],
642 } 638 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/builtin_impl_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698