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

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

Issue 1408113002: Add missing dependency from gen_snapshot to generate_resources_cc_file (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 'DART_SHARED_LIB', 366 'DART_SHARED_LIB',
367 'DART_NO_SNAPSHOT', 367 'DART_NO_SNAPSHOT',
368 ], 368 ],
369 }, 369 },
370 { 370 {
371 # Completely statically linked binary for generating snapshots. 371 # Completely statically linked binary for generating snapshots.
372 'target_name': 'gen_snapshot', 372 'target_name': 'gen_snapshot',
373 'type': 'executable', 373 'type': 'executable',
374 'toolsets':['host'], 374 'toolsets':['host'],
375 'dependencies': [ 375 'dependencies': [
376 'generate_resources_cc_file#host',
376 'libdart_nosnapshot', 377 'libdart_nosnapshot',
377 'libdart_builtin', 378 'libdart_builtin',
378 'libdart_io', 379 'libdart_io',
379 ], 380 ],
380 'include_dirs': [ 381 'include_dirs': [
381 '..', 382 '..',
382 ], 383 ],
383 'sources': [ 384 'sources': [
384 'address_sanitizer.cc', 385 'address_sanitizer.cc',
385 'gen_snapshot.cc', 386 'gen_snapshot.cc',
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
813 }], 814 }],
814 ['OS=="linux"', { 815 ['OS=="linux"', {
815 'cflags': [ 816 'cflags': [
816 '-fPIC', 817 '-fPIC',
817 ], 818 ],
818 }], 819 }],
819 ], 820 ],
820 }, 821 },
821 ], 822 ],
822 } 823 }
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