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

Side by Side Diff: test/cctest/SConscript

Issue 1652008: LiveEdit: calculate a real script difference (Closed)
Patch Set: static assert Created 10 years, 8 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 | « src/runtime.cc ('k') | test/cctest/test-liveedit.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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'test-decls.cc', 48 'test-decls.cc',
49 'test-diy-fp.cc', 49 'test-diy-fp.cc',
50 'test-double.cc', 50 'test-double.cc',
51 'test-fast-dtoa.cc', 51 'test-fast-dtoa.cc',
52 'test-flags.cc', 52 'test-flags.cc',
53 'test-func-name-inference.cc', 53 'test-func-name-inference.cc',
54 'test-hashmap.cc', 54 'test-hashmap.cc',
55 'test-heap.cc', 55 'test-heap.cc',
56 'test-heap-profiler.cc', 56 'test-heap-profiler.cc',
57 'test-list.cc', 57 'test-list.cc',
58 'test-liveedit.cc',
58 'test-lock.cc', 59 'test-lock.cc',
59 'test-log.cc', 60 'test-log.cc',
60 'test-log-utils.cc', 61 'test-log-utils.cc',
61 'test-mark-compact.cc', 62 'test-mark-compact.cc',
62 'test-parsing.cc', 63 'test-parsing.cc',
63 'test-profile-generator.cc', 64 'test-profile-generator.cc',
64 'test-regexp.cc', 65 'test-regexp.cc',
65 'test-serialize.cc', 66 'test-serialize.cc',
66 'test-sockets.cc', 67 'test-sockets.cc',
67 'test-spaces.cc', 68 'test-spaces.cc',
(...skipping 30 matching lines...) Expand all
98 context.ApplyEnvOverrides(env) 99 context.ApplyEnvOverrides(env)
99 # There seems to be a glitch in the way scons decides where to put 100 # There seems to be a glitch in the way scons decides where to put
100 # PDB files when compiling using MSVC so we specify it manually. 101 # PDB files when compiling using MSVC so we specify it manually.
101 # This should not affect any other platforms. 102 # This should not affect any other platforms.
102 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 103 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
103 PDB='cctest.exe.pdb') 104 PDB='cctest.exe.pdb')
104 105
105 106
106 program = Build() 107 program = Build()
107 Return('program') 108 Return('program')
OLDNEW
« no previous file with comments | « src/runtime.cc ('k') | test/cctest/test-liveedit.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698