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

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

Issue 8826007: First bits of external debugger API (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 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/bin/main.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 'variables': { 6 'variables': {
7 'builtin_in_cc_file': 'builtin_in.cc', 7 'builtin_in_cc_file': 'builtin_in.cc',
8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc', 8 'builtin_cc_file': '<(SHARED_INTERMEDIATE_DIR)/builtin_gen.cc',
9 'snapshot_in_cc_file': 'snapshot_in.cc', 9 'snapshot_in_cc_file': 'snapshot_in.cc',
10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin', 10 'snapshot_bin_file': '<(SHARED_INTERMEDIATE_DIR)/snapshot_gen.bin',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'libdart_lib_withcore', 80 'libdart_lib_withcore',
81 'libdart_vm', 81 'libdart_vm',
82 'libjscre', 82 'libjscre',
83 'libdouble_conversion', 83 'libdouble_conversion',
84 ], 84 ],
85 'include_dirs': [ 85 'include_dirs': [
86 '..', 86 '..',
87 ], 87 ],
88 'sources': [ 88 'sources': [
89 '../include/dart_api.h', 89 '../include/dart_api.h',
90 '../include/dart_debugger_api.h',
90 '../vm/dart_api_impl.cc', 91 '../vm/dart_api_impl.cc',
92 '../vm/debugger_api_impl.cc',
91 ], 93 ],
92 }, 94 },
93 { 95 {
94 # Completely statically linked binary for generating snapshots. 96 # Completely statically linked binary for generating snapshots.
95 'target_name': 'gen_snapshot', 97 'target_name': 'gen_snapshot',
96 'type': 'executable', 98 'type': 'executable',
97 'dependencies': [ 99 'dependencies': [
98 'libdart_withcore', 100 'libdart_withcore',
99 'libdart_builtin', 101 'libdart_builtin',
100 ], 102 ],
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 'conditions': [ 238 'conditions': [
237 ['OS=="win"', { 239 ['OS=="win"', {
238 'link_settings': { 240 'link_settings': {
239 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ], 241 'libraries': [ '-lws2_32.lib', '-lRpcrt4.lib' ],
240 }, 242 },
241 }], 243 }],
242 ], 244 ],
243 }, 245 },
244 ], 246 ],
245 } 247 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698