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  'targets': [
7    {
8      'target_name': 'gtest',
9      'toolsets': ['host', 'target'],
10      'type': 'static_library',
11      'sources': [
12        'gtest/include/gtest/gtest-death-test.h',
13        'gtest/include/gtest/gtest-message.h',
14        'gtest/include/gtest/gtest-param-test.h',
15        'gtest/include/gtest/gtest-printers.h',
16        'gtest/include/gtest/gtest-spi.h',
17        'gtest/include/gtest/gtest-test-part.h',
18        'gtest/include/gtest/gtest-typed-test.h',
19        'gtest/include/gtest/gtest.h',
20        'gtest/include/gtest/gtest_pred_impl.h',
21        'gtest/include/gtest/internal/gtest-death-test-internal.h',
22        'gtest/include/gtest/internal/gtest-filepath.h',
23        'gtest/include/gtest/internal/gtest-internal.h',
24        'gtest/include/gtest/internal/gtest-linked_ptr.h',
25        'gtest/include/gtest/internal/gtest-param-util-generated.h',
26        'gtest/include/gtest/internal/gtest-param-util.h',
27        'gtest/include/gtest/internal/gtest-port.h',
28        'gtest/include/gtest/internal/gtest-string.h',
29        'gtest/include/gtest/internal/gtest-tuple.h',
30        'gtest/include/gtest/internal/gtest-type-util.h',
31        'gtest/src/gtest-all.cc',
32        'gtest/src/gtest-death-test.cc',
33        'gtest/src/gtest-filepath.cc',
34        'gtest/src/gtest-internal-inl.h',
35        'gtest/src/gtest-port.cc',
36        'gtest/src/gtest-printers.cc',
37        'gtest/src/gtest-test-part.cc',
38        'gtest/src/gtest-typed-test.cc',
39        'gtest/src/gtest.cc',
40        'gtest-support.h',
41      ],
42      'sources!': [
43        'gtest/src/gtest-all.cc',  # Not needed by our build.
44      ],
45      'include_dirs': [
46        'gtest',
47        'gtest/include',
48      ],
49      'dependencies': [
50        'gtest_prod',
51      ],
52      'defines': [
53        # In order to allow regex matches in gtest to be shared between Windows
54        # and other systems, we tell gtest to always use it's internal engine.
55        'GTEST_HAS_POSIX_RE=0',
56        # Chrome doesn't support / require C++11, yet.
57        'GTEST_LANG_CXX11=0',
58      ],
59      'all_dependent_settings': {
60        'defines': [
61          'GTEST_HAS_POSIX_RE=0',
62          'GTEST_LANG_CXX11=0',
63        ],
64      },
65      'conditions': [
66        ['os_posix == 1', {
67          'defines': [
68            # gtest isn't able to figure out when RTTI is disabled for gcc
69            # versions older than 4.3.2, and assumes it's enabled.  Our Mac
70            # and Linux builds disable RTTI, and cannot guarantee that the
71            # compiler will be 4.3.2. or newer.  The Mac, for example, uses
72            # 4.2.1 as that is the latest available on that platform.  gtest
73            # must be instructed that RTTI is disabled here, and for any
74            # direct dependents that might include gtest headers.
75            'GTEST_HAS_RTTI=0',
76          ],
77          'direct_dependent_settings': {
78            'defines': [
79              'GTEST_HAS_RTTI=0',
80            ],
81          },
82        }],
83        ['OS=="android"', {
84          'defines': [
85            'GTEST_HAS_CLONE=0',
86          ],
87          'direct_dependent_settings': {
88            'defines': [
89              'GTEST_HAS_CLONE=0',
90            ],
91          },
92        }],
93        ['OS=="android"', {
94          # We want gtest features that use tr1::tuple, but we currently
95          # don't support the variadic templates used by libstdc++'s
96          # implementation. gtest supports this scenario by providing its
97          # own implementation but we must opt in to it.
98          'defines': [
99            'GTEST_USE_OWN_TR1_TUPLE=1',
100            # GTEST_USE_OWN_TR1_TUPLE only works if GTEST_HAS_TR1_TUPLE is set.
101            # gtest r625 made it so that GTEST_HAS_TR1_TUPLE is set to 0
102            # automatically on android, so it has to be set explicitly here.
103            'GTEST_HAS_TR1_TUPLE=1',
104          ],
105          'direct_dependent_settings': {
106            'defines': [
107              'GTEST_USE_OWN_TR1_TUPLE=1',
108              'GTEST_HAS_TR1_TUPLE=1',
109            ],
110          },
111        }],
112      ],
113      'direct_dependent_settings': {
114        'defines': [
115          'UNIT_TEST',
116        ],
117        'include_dirs': [
118          'gtest/include',  # So that gtest headers can find themselves.
119        ],
120        'target_conditions': [
121          ['_type=="executable"', {
122            'test': 1,
123            'conditions': [
124              ['OS=="mac"', {
125                'run_as': {
126                  'action????': ['${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}'],
127                },
128              }],
129              ['OS=="win"', {
130                'run_as': {
131                  'action????': ['$(TargetPath)', '--gtest_print_time'],
132                },
133              }],
134            ],
135          }],
136        ],
137        'msvs_disabled_warnings': [4800],
138      },
139    },
140    {
141      'target_name': 'gtest_main',
142      'type': 'static_library',
143      'dependencies': [
144        'gtest',
145      ],
146      'sources': [
147        'gtest/src/gtest_main.cc',
148      ],
149    },
150    {
151      'target_name': 'gtest_prod',
152      'toolsets': ['host', 'target'],
153      'type': 'none',
154      'sources': [
155        'gtest/include/gtest/gtest_prod.h',
156      ],
157    },
158  ],
159}
160