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 179713002: Make run_vm_tests on host depend on libdart_io again. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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) 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': ['host', 'target'],
173 'include_dirs': [ 174 'include_dirs': [
174 '..', 175 '..',
175 ], 176 ],
176 'includes': [ 177 'includes': [
177 'io_impl_sources.gypi', 178 'io_impl_sources.gypi',
178 ], 179 ],
179 'sources': [ 180 'sources': [
180 'io_natives.h', 181 'io_natives.h',
181 'io_natives.cc', 182 'io_natives.cc',
182 ], 183 ],
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 }], 539 }],
539 ], 540 ],
540 }, 541 },
541 { 542 {
542 'target_name': 'run_vm_tests.host', 543 'target_name': 'run_vm_tests.host',
543 'type': 'executable', 544 'type': 'executable',
544 'toolsets':['host'], 545 'toolsets':['host'],
545 'dependencies': [ 546 'dependencies': [
546 'libdart_withcore', 547 'libdart_withcore',
547 'libdart_builtin', 548 'libdart_builtin',
549 'libdart_io',
548 'generate_snapshot_file#host', 550 'generate_snapshot_file#host',
549 'generate_snapshot_test_dat_file#host', 551 'generate_snapshot_test_dat_file#host',
550 ], 552 ],
551 'include_dirs': [ 553 'include_dirs': [
552 '..', 554 '..',
553 '<(gen_source_dir)', 555 '<(gen_source_dir)',
554 ], 556 ],
555 'sources': [ 557 'sources': [
556 'run_vm_tests.cc', 558 'run_vm_tests.cc',
557 'builtin_natives.cc', 559 'builtin_natives.cc',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
629 }], 631 }],
630 ['OS=="linux"', { 632 ['OS=="linux"', {
631 'cflags': [ 633 'cflags': [
632 '-fPIC', 634 '-fPIC',
633 ], 635 ],
634 }], 636 }],
635 ], 637 ],
636 }, 638 },
637 ], 639 ],
638 } 640 }
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