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

Side by Side Diff: src/SConscript

Issue 27355: Add V8 debugger agent.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 9 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 | « include/v8-debug.h ('k') | src/api.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 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 21 matching lines...) Expand all
32 import js2c 32 import js2c
33 Import('context') 33 Import('context')
34 34
35 35
36 SOURCES = { 36 SOURCES = {
37 'all': [ 37 'all': [
38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc', 38 'accessors.cc', 'allocation.cc', 'api.cc', 'assembler.cc', 'ast.cc',
39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc', 39 'bootstrapper.cc', 'builtins.cc', 'checks.cc', 'code-stubs.cc',
40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc', 40 'codegen.cc', 'compilation-cache.cc', 'compiler.cc', 'contexts.cc',
41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc', 41 'conversions.cc', 'counters.cc', 'dateparser.cc', 'debug.cc',
42 'disassembler.cc', 'execution.cc', 'factory.cc', 'flags.cc', 42 'debug-agent.cc', 'disassembler.cc', 'execution.cc', 'factory.cc',
43 'frames.cc', 'global-handles.cc', 'handles.cc', 'hashmap.cc', 'heap.cc', 43 'flags.cc', 'frames.cc', 'global-handles.cc', 'handles.cc', 'hashmap.cc',
44 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc', 'jump-target.cc', 44 'heap.cc', 'ic.cc', 'interpreter-irregexp.cc', 'jsregexp.cc',
45 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc', 'parser.cc', 45 'jump-target.cc', 'log.cc', 'mark-compact.cc', 'messages.cc', 'objects.cc',
46 'property.cc', 'regexp-macro-assembler.cc', 46 'parser.cc', 'property.cc', 'regexp-macro-assembler.cc',
47 'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc', 47 'regexp-macro-assembler-irregexp.cc', 'regexp-stack.cc',
48 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc', 48 'register-allocator.cc', 'rewriter.cc', 'runtime.cc', 'scanner.cc',
49 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc', 49 'scopeinfo.cc', 'scopes.cc', 'serialize.cc', 'snapshot-common.cc',
50 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc', 50 'spaces.cc', 'string-stream.cc', 'stub-cache.cc', 'token.cc', 'top.cc',
51 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc', 51 'unicode.cc', 'usage-analyzer.cc', 'utils.cc', 'v8-counters.cc',
52 'v8.cc', 'v8threads.cc', 'variables.cc', 'virtual-frame.cc', 'zone.cc' 52 'v8.cc', 'v8threads.cc', 'variables.cc', 'virtual-frame.cc', 'zone.cc'
53 ], 53 ],
54 'arch:arm': [ 54 'arch:arm': [
55 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc', 55 'assembler-arm.cc', 'builtins-arm.cc', 'codegen-arm.cc', 'cpu-arm.cc',
56 'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc', 56 'disasm-arm.cc', 'debug-arm.cc', 'frames-arm.cc', 'ic-arm.cc',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.']) 154 snapshot_obj = context.ConfigureObject(env, snapshot_cc, CPPPATH=['.'])
155 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .']) 155 libraries_obj = context.ConfigureObject(env, libraries_empty_src, CPPPATH=[' .'])
156 else: 156 else:
157 snapshot_obj = empty_snapshot_obj 157 snapshot_obj = empty_snapshot_obj
158 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj] 158 library_objs = [non_snapshot_files, libraries_obj, snapshot_obj]
159 return (library_objs, d8_objs, [mksnapshot]) 159 return (library_objs, d8_objs, [mksnapshot])
160 160
161 161
162 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles() 162 (library_objs, d8_objs, mksnapshot) = ConfigureObjectFiles()
163 Return('library_objs d8_objs mksnapshot') 163 Return('library_objs d8_objs mksnapshot')
OLDNEW
« no previous file with comments | « include/v8-debug.h ('k') | src/api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698