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

Side by Side Diff: test/cctest/SConscript

Issue 5277007: RelocInfo: fix source position decoding. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « src/runtime.cc ('k') | test/cctest/test-reloc-info.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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 'test-heap-profiler.cc', 62 'test-heap-profiler.cc',
63 'test-list.cc', 63 'test-list.cc',
64 'test-liveedit.cc', 64 'test-liveedit.cc',
65 'test-lock.cc', 65 'test-lock.cc',
66 'test-log.cc', 66 'test-log.cc',
67 'test-log-utils.cc', 67 'test-log-utils.cc',
68 'test-mark-compact.cc', 68 'test-mark-compact.cc',
69 'test-parsing.cc', 69 'test-parsing.cc',
70 'test-profile-generator.cc', 70 'test-profile-generator.cc',
71 'test-regexp.cc', 71 'test-regexp.cc',
72 'test-reloc-info.cc',
72 'test-serialize.cc', 73 'test-serialize.cc',
73 'test-sockets.cc', 74 'test-sockets.cc',
74 'test-spaces.cc', 75 'test-spaces.cc',
75 'test-strings.cc', 76 'test-strings.cc',
76 'test-strtod.cc', 77 'test-strtod.cc',
77 'test-thread-termination.cc', 78 'test-thread-termination.cc',
78 'test-threads.cc', 79 'test-threads.cc',
79 'test-type-info.cc', 80 'test-type-info.cc',
80 'test-unbound-queue.cc', 81 'test-unbound-queue.cc',
81 'test-utils.cc', 82 'test-utils.cc',
(...skipping 26 matching lines...) Expand all
108 context.ApplyEnvOverrides(env) 109 context.ApplyEnvOverrides(env)
109 # There seems to be a glitch in the way scons decides where to put 110 # There seems to be a glitch in the way scons decides where to put
110 # PDB files when compiling using MSVC so we specify it manually. 111 # PDB files when compiling using MSVC so we specify it manually.
111 # This should not affect any other platforms. 112 # This should not affect any other platforms.
112 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 113 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
113 PDB='cctest.exe.pdb') 114 PDB='cctest.exe.pdb')
114 115
115 116
116 program = Build() 117 program = Build()
117 Return('program') 118 Return('program')
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | test/cctest/test-reloc-info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698