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

Side by Side Diff: runtime/dart-runtime.gyp

Issue 11434106: Part of fix for http://dartbug.com/6528 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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/vm/libdart_dependency_helper.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) 2011, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2011, 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 'includes': [ 6 'includes': [
7 'tools/gyp/runtime-configurations.gypi', 7 'tools/gyp/runtime-configurations.gypi',
8 'vm/vm.gypi', 8 'vm/vm.gypi',
9 'bin/bin.gypi', 9 'bin/bin.gypi',
10 'third_party/double-conversion/src/double-conversion.gypi', 10 'third_party/double-conversion/src/double-conversion.gypi',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'dependencies': [ 53 'dependencies': [
54 'libdart_dependency_helper', 54 'libdart_dependency_helper',
55 ], 55 ],
56 'actions': [ 56 'actions': [
57 { 57 {
58 'action_name': 'generate_version_cc', 58 'action_name': 'generate_version_cc',
59 'inputs': [ 59 'inputs': [
60 'tools/make_version.py', 60 'tools/make_version.py',
61 '../tools/VERSION', 61 '../tools/VERSION',
62 '<(version_in_cc_file)', 62 '<(version_in_cc_file)',
63 # We need to list the libdart_dependency_helper executable here 63 # Depend on libdart_dependency_helper to track the libraries it
64 # otherwise the action doesn't get executed if any of 64 # depends on.
65 # libdart/libdart_withcore changes
66 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper<(EXECU TABLE_SUFFIX)', 65 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)libdart_dependency_helper<(EXECU TABLE_SUFFIX)',
67 ], 66 ],
68 'outputs': [ 67 'outputs': [
69 '<(version_cc_file)', 68 '<(version_cc_file)',
70 ], 69 ],
71 'action': [ 70 'action': [
72 'python', 71 'python',
73 '-u', # Make standard I/O unbuffered. 72 '-u', # Make standard I/O unbuffered.
74 'tools/make_version.py', 73 'tools/make_version.py',
75 '--output', '<(version_cc_file)', 74 '--output', '<(version_cc_file)',
(...skipping 21 matching lines...) Expand all
97 }, 96 },
98 { 97 {
99 'target_name': 'runtime_packages', 98 'target_name': 'runtime_packages',
100 'type': 'none', 99 'type': 'none',
101 'dependencies': [ 100 'dependencies': [
102 '../pkg/pkg.gyp:pkg_packages', 101 '../pkg/pkg.gyp:pkg_packages',
103 ], 102 ],
104 }, 103 },
105 ], 104 ],
106 } 105 }
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/libdart_dependency_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698