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

Unified Diff: test/heap-unittests/heap-unittests.gyp

Issue 475233005: Setup heap-unittests and runtime-unittests. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Also add heap-unittests. Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/heap-unittests/heap-unittests.cc ('k') | test/heap-unittests/heap-unittests.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/heap-unittests/heap-unittests.gyp
diff --git a/test/compiler-unittests/compiler-unittests.gyp b/test/heap-unittests/heap-unittests.gyp
similarity index 55%
copy from test/compiler-unittests/compiler-unittests.gyp
copy to test/heap-unittests/heap-unittests.gyp
index e486fe32d6534a7848e7b9aeb650541525fe2bf2..99e638a820707dccb78a257b32817da6c5be6424 100644
--- a/test/compiler-unittests/compiler-unittests.gyp
+++ b/test/heap-unittests/heap-unittests.gyp
@@ -9,7 +9,7 @@
'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
'targets': [
{
- 'target_name': 'compiler-unittests',
+ 'target_name': 'heap-unittests',
'type': 'executable',
'dependencies': [
'../../testing/gmock.gyp:gmock',
@@ -20,39 +20,12 @@
'../..',
],
'sources': [ ### gcmole(all) ###
- 'change-lowering-unittest.cc',
- 'common-operator-unittest.cc',
- 'common-operator-unittest.h',
- 'compiler-unittests.cc',
- 'graph-unittest.cc',
- 'graph-unittest.h',
- 'instruction-selector-unittest.cc',
- 'machine-operator-reducer-unittest.cc',
- 'machine-operator-unittest.cc',
+ 'heap-unittest.cc',
+ 'heap-unittests.cc',
],
'conditions': [
- ['v8_target_arch=="arm"', {
- 'sources': [ ### gcmole(arch:arm) ###
- 'arm/instruction-selector-arm-unittest.cc',
- ],
- }],
- ['v8_target_arch=="arm64"', {
- 'sources': [ ### gcmole(arch:arm64) ###
- 'arm64/instruction-selector-arm64-unittest.cc',
- ],
- }],
- ['v8_target_arch=="ia32"', {
- 'sources': [ ### gcmole(arch:ia32) ###
- 'ia32/instruction-selector-ia32-unittest.cc',
- ],
- }],
- ['v8_target_arch=="x64"', {
- 'sources': [ ### gcmole(arch:x64) ###
- 'x64/instruction-selector-x64-unittest.cc',
- ],
- }],
['component=="shared_library"', {
- # compiler-unittests can't be built against a shared library, so we
+ # heap-unittests can't be built against a shared library, so we
# need to depend on the underlying static target in that case.
'conditions': [
['v8_use_snapshot=="true"', {
« no previous file with comments | « test/heap-unittests/heap-unittests.cc ('k') | test/heap-unittests/heap-unittests.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698