OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'v8_code': 1, | |
8 }, | |
9 'includes': ['../../build/toolchain.gypi', '../../build/features.gypi'], | |
10 'targets': [ | |
11 { | |
12 'target_name': 'base-unittests', | |
jochen (gone - plz use gerrit)
2014/08/06 09:26:53
nit. please use underscores
Benedikt Meurer
2014/08/06 09:30:24
As discussed offline: While that would be consiste
| |
13 'type': 'executable', | |
14 'dependencies': [ | |
15 '../../testing/gmock.gyp:gmock_main', | |
16 '../../testing/gtest.gyp:gtest', | |
17 '../../tools/gyp/v8.gyp:v8_libbase', | |
18 ], | |
19 'include_dirs': [ | |
20 '../..', | |
21 ], | |
22 'sources': [ ### gcmole(all) ### | |
23 'cpu-unittest.cc', | |
24 'platform/condition-variable-unittest.cc', | |
25 'platform/mutex-unittest.cc', | |
26 'platform/platform-unittest.cc', | |
27 'platform/time-unittest.cc', | |
28 'utils/random-number-generator-unittest.cc', | |
29 ], | |
30 }, | |
31 ], | |
32 } | |
OLD | NEW |