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

Side by Side Diff: test/cctest/cctest.gyp

Issue 7060010: Merge bleeding edge into the GC branch up to 7948. The asserts (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 9 years, 7 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 | « test/cctest/cctest.h ('k') | test/cctest/cctest.status » ('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 2010 the V8 project authors. All rights reserved. 1 # Copyright 2010 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 24 matching lines...) Expand all
35 ['v8_target_arch=="arm"', { 35 ['v8_target_arch=="arm"', {
36 'defines': [ 36 'defines': [
37 'V8_TARGET_ARCH_ARM', 37 'V8_TARGET_ARCH_ARM',
38 ], 38 ],
39 }], 39 }],
40 ['v8_target_arch=="ia32"', { 40 ['v8_target_arch=="ia32"', {
41 'defines': [ 41 'defines': [
42 'V8_TARGET_ARCH_IA32', 42 'V8_TARGET_ARCH_IA32',
43 ], 43 ],
44 }], 44 }],
45 ['v8_target_arch=="mips"', {
46 'defines': [
47 'V8_TARGET_ARCH_MIPS',
48 ],
49 }],
45 ['v8_target_arch=="x64"', { 50 ['v8_target_arch=="x64"', {
46 'defines': [ 51 'defines': [
47 'V8_TARGET_ARCH_X64', 52 'V8_TARGET_ARCH_X64',
48 ], 53 ],
49 }], 54 }],
50 ], 55 ],
51 }], 56 }],
52 ], 57 ],
53 }, 58 },
54 'targets': [ 59 'targets': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 'test-fast-dtoa.cc', 91 'test-fast-dtoa.cc',
87 'test-fixed-dtoa.cc', 92 'test-fixed-dtoa.cc',
88 'test-flags.cc', 93 'test-flags.cc',
89 'test-func-name-inference.cc', 94 'test-func-name-inference.cc',
90 'test-hashmap.cc', 95 'test-hashmap.cc',
91 'test-heap.cc', 96 'test-heap.cc',
92 'test-heap-profiler.cc', 97 'test-heap-profiler.cc',
93 'test-list.cc', 98 'test-list.cc',
94 'test-liveedit.cc', 99 'test-liveedit.cc',
95 'test-lock.cc', 100 'test-lock.cc',
101 'test-lockers.cc',
96 'test-log.cc', 102 'test-log.cc',
97 'test-log-utils.cc', 103 'test-log-utils.cc',
98 'test-mark-compact.cc', 104 'test-mark-compact.cc',
99 'test-parsing.cc', 105 'test-parsing.cc',
100 'test-profile-generator.cc', 106 'test-profile-generator.cc',
101 'test-regexp.cc', 107 'test-regexp.cc',
102 'test-reloc-info.cc', 108 'test-reloc-info.cc',
103 'test-serialize.cc', 109 'test-serialize.cc',
104 'test-sockets.cc', 110 'test-sockets.cc',
105 'test-spaces.cc', 111 'test-spaces.cc',
106 'test-strings.cc', 112 'test-strings.cc',
107 'test-strtod.cc', 113 'test-strtod.cc',
108 'test-thread-termination.cc', 114 'test-thread-termination.cc',
109 'test-threads.cc', 115 'test-threads.cc',
110 'test-type-info.cc',
111 'test-unbound-queue.cc', 116 'test-unbound-queue.cc',
112 'test-utils.cc', 117 'test-utils.cc',
113 'test-version.cc' 118 'test-version.cc'
114 ], 119 ],
115 'conditions': [ 120 'conditions': [
116 ['v8_target_arch=="ia32"', { 121 ['v8_target_arch=="ia32"', {
117 'sources': [ 122 'sources': [
118 'test-assembler-ia32.cc', 123 'test-assembler-ia32.cc',
119 'test-disasm-ia32.cc', 124 'test-disasm-ia32.cc',
120 'test-log-stack-tracer.cc' 125 'test-log-stack-tracer.cc'
121 ], 126 ],
122 }], 127 }],
123 ['v8_target_arch=="x64"', { 128 ['v8_target_arch=="x64"', {
124 'sources': [ 129 'sources': [
125 'test-assembler-x64.cc', 130 'test-assembler-x64.cc',
126 'test-macro-assembler-x64.cc', 131 'test-macro-assembler-x64.cc',
127 'test-log-stack-tracer.cc' 132 'test-log-stack-tracer.cc'
128 ], 133 ],
129 }], 134 }],
130 ['v8_target_arch=="arm"', { 135 ['v8_target_arch=="arm"', {
131 'sources': [ 136 'sources': [
132 'test-assembler-arm.cc', 137 'test-assembler-arm.cc',
133 'test-disasm-arm.cc' 138 'test-disasm-arm.cc'
134 ], 139 ],
135 }], 140 }],
136 ['v8_target_arch=="mips"', { 141 ['v8_target_arch=="mips"', {
137 'sources': [ 142 'sources': [
138 'test-assembler-mips.cc', 143 'test-assembler-mips.cc',
139 'test-mips.cc', 144 'test-disasm-mips.cc',
140 ], 145 ],
141 }], 146 }],
142 [ 'OS=="linux"', { 147 [ 'OS=="linux"', {
143 'sources': [ 148 'sources': [
144 'test-platform-linux.cc', 149 'test-platform-linux.cc',
145 ], 150 ],
146 }], 151 }],
147 [ 'OS=="mac"', { 152 [ 'OS=="mac"', {
148 'sources': [ 153 'sources': [
149 'test-platform-macos.cc', 154 'test-platform-macos.cc',
150 ], 155 ],
151 }], 156 }],
152 [ 'OS=="win"', { 157 [ 'OS=="win"', {
153 'sources': [ 158 'sources': [
154 'test-platform-win32.cc', 159 'test-platform-win32.cc',
155 ], 160 ],
156 }], 161 }],
157 ], 162 ],
158 }, 163 },
159 ], 164 ],
160 } 165 }
OLDNEW
« no previous file with comments | « test/cctest/cctest.h ('k') | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698