| Index: test/unittests/unittests.gyp
|
| diff --git a/test/unittests/unittests.gyp b/test/unittests/unittests.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3bd558e7df5e5cabad72902dbd3b8ec00b76a0f6
|
| --- /dev/null
|
| +++ b/test/unittests/unittests.gyp
|
| @@ -0,0 +1,117 @@
|
| +# Copyright 2014 the V8 project authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +{
|
| + 'variables': {
|
| + 'v8_code': 1,
|
| + },
|
| + 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'],
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'unittests',
|
| + 'type': 'executable',
|
| + 'variables': {
|
| + 'optimize': 'max',
|
| + },
|
| + 'dependencies': [
|
| + '../../testing/gmock.gyp:gmock',
|
| + '../../testing/gtest.gyp:gtest',
|
| + '../../tools/gyp/v8.gyp:v8_libplatform',
|
| + ],
|
| + 'include_dirs': [
|
| + '../..',
|
| + ],
|
| + 'sources': [ ### gcmole(all) ###
|
| + 'base/bits-unittest.cc',
|
| + 'base/cpu-unittest.cc',
|
| + 'base/division-by-constant-unittest.cc',
|
| + 'base/flags-unittest.cc',
|
| + 'base/platform/condition-variable-unittest.cc',
|
| + 'base/platform/mutex-unittest.cc',
|
| + 'base/platform/platform-unittest.cc',
|
| + 'base/platform/semaphore-unittest.cc',
|
| + 'base/platform/time-unittest.cc',
|
| + 'base/sys-info-unittest.cc',
|
| + 'base/utils/random-number-generator-unittest.cc',
|
| + 'compiler/change-lowering-unittest.cc',
|
| + 'compiler/common-operator-unittest.cc',
|
| + 'compiler/compiler-test-utils.h',
|
| + 'compiler/graph-reducer-unittest.cc',
|
| + 'compiler/graph-unittest.cc',
|
| + 'compiler/graph-unittest.h',
|
| + 'compiler/instruction-selector-unittest.cc',
|
| + 'compiler/instruction-selector-unittest.h',
|
| + 'compiler/js-builtin-reducer-unittest.cc',
|
| + 'compiler/js-operator-unittest.cc',
|
| + 'compiler/machine-operator-reducer-unittest.cc',
|
| + 'compiler/machine-operator-unittest.cc',
|
| + 'compiler/simplified-operator-reducer-unittest.cc',
|
| + 'compiler/simplified-operator-unittest.cc',
|
| + 'compiler/value-numbering-reducer-unittest.cc',
|
| + 'libplatform/default-platform-unittest.cc',
|
| + 'libplatform/task-queue-unittest.cc',
|
| + 'libplatform/worker-thread-unittest.cc',
|
| + 'heap/gc-idle-time-handler-unittest.cc',
|
| + 'run-all-unittests.cc',
|
| + 'test-utils.h',
|
| + 'test-utils.cc',
|
| + ],
|
| + 'conditions': [
|
| + ['v8_target_arch=="arm"', {
|
| + 'sources': [ ### gcmole(arch:arm) ###
|
| + 'compiler/arm/instruction-selector-arm-unittest.cc',
|
| + ],
|
| + }],
|
| + ['v8_target_arch=="arm64"', {
|
| + 'sources': [ ### gcmole(arch:arm64) ###
|
| + 'compiler/arm64/instruction-selector-arm64-unittest.cc',
|
| + ],
|
| + }],
|
| + ['v8_target_arch=="ia32"', {
|
| + 'sources': [ ### gcmole(arch:ia32) ###
|
| + 'compiler/ia32/instruction-selector-ia32-unittest.cc',
|
| + ],
|
| + }],
|
| + ['v8_target_arch=="x64"', {
|
| + 'sources': [ ### gcmole(arch:x64) ###
|
| + 'compiler/x64/instruction-selector-x64-unittest.cc',
|
| + ],
|
| + }],
|
| + ['component=="shared_library"', {
|
| + # compiler-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"', {
|
| + 'dependencies': ['../../tools/gyp/v8.gyp:v8_snapshot'],
|
| + },
|
| + {
|
| + 'dependencies': [
|
| + '../../tools/gyp/v8.gyp:v8_nosnapshot',
|
| + ],
|
| + }],
|
| + ],
|
| + }, {
|
| + 'dependencies': ['../../tools/gyp/v8.gyp:v8'],
|
| + }],
|
| + ['os_posix == 1', {
|
| + # TODO(svenpanne): This is a temporary work-around to fix the warnings
|
| + # that show up because we use -std=gnu++0x instead of -std=c++11.
|
| + 'cflags!': [
|
| + '-pedantic',
|
| + ],
|
| + 'direct_dependent_settings': {
|
| + 'cflags!': [
|
| + '-pedantic',
|
| + ],
|
| + },
|
| + }],
|
| + ['want_separate_host_toolset==1', {
|
| + 'toolsets': ['host', 'target'],
|
| + }, {
|
| + 'toolsets': ['target'],
|
| + }],
|
| + ],
|
| + },
|
| + ],
|
| +}
|
|
|