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

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

Issue 1161473003: VM: Fix nosnapshot build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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
« 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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 '../include/dart_mirrors_api.h', 366 '../include/dart_mirrors_api.h',
367 '../include/dart_native_api.h', 367 '../include/dart_native_api.h',
368 '../vm/dart_api_impl.cc', 368 '../vm/dart_api_impl.cc',
369 '../vm/debugger_api_impl.cc', 369 '../vm/debugger_api_impl.cc',
370 '../vm/mirrors_api_impl.cc', 370 '../vm/mirrors_api_impl.cc',
371 '../vm/native_api_impl.cc', 371 '../vm/native_api_impl.cc',
372 '<(version_cc_file)', 372 '<(version_cc_file)',
373 ], 373 ],
374 'defines': [ 374 'defines': [
375 'DART_SHARED_LIB', 375 'DART_SHARED_LIB',
376 'DART_NO_SNAPSHOT',
376 ], 377 ],
377 }, 378 },
378 { 379 {
379 # Completely statically linked binary for generating snapshots. 380 # Completely statically linked binary for generating snapshots.
380 'target_name': 'gen_snapshot', 381 'target_name': 'gen_snapshot',
381 'type': 'executable', 382 'type': 'executable',
382 'toolsets':['host'], 383 'toolsets':['host'],
383 'dependencies': [ 384 'dependencies': [
384 'libdart_nosnapshot', 385 'libdart_nosnapshot',
385 'libdart_builtin', 386 'libdart_builtin',
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
809 }], 810 }],
810 ['OS=="linux"', { 811 ['OS=="linux"', {
811 'cflags': [ 812 'cflags': [
812 '-fPIC', 813 '-fPIC',
813 ], 814 ],
814 }], 815 }],
815 ], 816 ],
816 }, 817 },
817 ], 818 ],
818 } 819 }
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