| OLD | NEW |
| 1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'v8_code': 1, | 7 'v8_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | 9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], |
| 10 'targets': [ | 10 'targets': [ |
| 11 { | 11 { |
| 12 'target_name': 'compiler-unittests', | 12 'target_name': 'compiler-unittests', |
| 13 'type': 'executable', | 13 'type': 'executable', |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '../../testing/gmock.gyp:gmock', | 15 '../../testing/gmock.gyp:gmock', |
| 16 '../../testing/gtest.gyp:gtest', | 16 '../../testing/gtest.gyp:gtest', |
| 17 '../../tools/gyp/v8.gyp:v8_libplatform', | 17 '../../tools/gyp/v8.gyp:v8_libplatform', |
| 18 ], | 18 ], |
| 19 'include_dirs': [ | 19 'include_dirs': [ |
| 20 '../..', | 20 '../..', |
| 21 ], | 21 ], |
| 22 'sources': [ ### gcmole(all) ### | 22 'sources': [ ### gcmole(all) ### |
| 23 'change-lowering-unittest.cc', | 23 'change-lowering-unittest.cc', |
| 24 'common-node-cache-unittest.cc', |
| 24 'compiler-unittests.cc', | 25 'compiler-unittests.cc', |
| 25 'instruction-selector-unittest.cc', | 26 'instruction-selector-unittest.cc', |
| 27 'node-cache-unittest.cc', |
| 26 'node-matchers.cc', | 28 'node-matchers.cc', |
| 27 'node-matchers.h', | 29 'node-matchers.h', |
| 28 ], | 30 ], |
| 29 'conditions': [ | 31 'conditions': [ |
| 30 ['v8_target_arch=="arm"', { | 32 ['v8_target_arch=="arm"', { |
| 31 'sources': [ ### gcmole(arch:arm) ### | 33 'sources': [ ### gcmole(arch:arm) ### |
| 32 'arm/instruction-selector-arm-unittest.cc', | 34 'arm/instruction-selector-arm-unittest.cc', |
| 33 ], | 35 ], |
| 34 }], | 36 }], |
| 35 ['component=="shared_library"', { | 37 ['component=="shared_library"', { |
| (...skipping 16 matching lines...) Expand all Loading... |
| 52 # TODO(svenpanne): This is a temporary work-around to fix the warnings | 54 # TODO(svenpanne): This is a temporary work-around to fix the warnings |
| 53 # that show up because we use -std=gnu++0x instead of -std=c++11. | 55 # that show up because we use -std=gnu++0x instead of -std=c++11. |
| 54 'cflags!': [ | 56 'cflags!': [ |
| 55 '-pedantic', | 57 '-pedantic', |
| 56 ], | 58 ], |
| 57 }], | 59 }], |
| 58 ], | 60 ], |
| 59 }, | 61 }, |
| 60 ], | 62 ], |
| 61 } | 63 } |
| OLD | NEW |