|
1 # Copyright (c) 2010, Google Inc. |
|
2 # All rights reserved. |
|
3 # |
|
4 # Redistribution and use in source and binary forms, with or without |
|
5 # modification, are permitted provided that the following conditions are |
|
6 # met: |
|
7 # |
|
8 # * Redistributions of source code must retain the above copyright |
|
9 # notice, this list of conditions and the following disclaimer. |
|
10 # * Redistributions in binary form must reproduce the above |
|
11 # copyright notice, this list of conditions and the following disclaimer |
|
12 # in the documentation and/or other materials provided with the |
|
13 # distribution. |
|
14 # * Neither the name of Google Inc. nor the names of its |
|
15 # contributors may be used to endorse or promote products derived from |
|
16 # this software without specific prior written permission. |
|
17 # |
|
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
29 |
|
30 { |
|
31 'includes': [ |
|
32 '../build/common.gypi', |
|
33 ], |
|
34 'target_defaults': { |
|
35 }, |
|
36 'targets': [ |
|
37 { |
|
38 'target_name': 'gtest', |
|
39 'type': 'static_library', |
|
40 'include_dirs': [ |
|
41 '<(DEPTH)/testing/include', |
|
42 '<(DEPTH)/testing/gtest', |
|
43 '<(DEPTH)/testing/gtest/include', |
|
44 ], |
|
45 'sources': [ |
|
46 '<(DEPTH)/testing/gtest/src/gtest-all.cc', |
|
47 ], |
|
48 'direct_dependent_settings': { |
|
49 'include_dirs': [ |
|
50 '<(DEPTH)/testing/include', |
|
51 '<(DEPTH)/testing/gtest/include', |
|
52 ], |
|
53 # Visual C++ implements variadic templates strangely, and |
|
54 # VC++2012 broke Google Test by lowering this value. See |
|
55 # http://stackoverflow.com/questions/12558327/google-test-in-visual-studio-2012 |
|
56 'defines': ['_VARIADIC_MAX=10'], |
|
57 }, |
|
58 'defines': ['_VARIADIC_MAX=10'], |
|
59 }, |
|
60 { |
|
61 'target_name': 'gmock', |
|
62 'type': 'static_library', |
|
63 'include_dirs': [ |
|
64 '<(DEPTH)/testing/include', |
|
65 '<(DEPTH)/testing/', |
|
66 '<(DEPTH)/testing/gtest', |
|
67 '<(DEPTH)/testing/gtest/include', |
|
68 ], |
|
69 'sources': [ |
|
70 '<(DEPTH)/testing/src/gmock-all.cc', |
|
71 '<(DEPTH)/testing/src/gmock_main.cc', |
|
72 ], |
|
73 'direct_dependent_settings': { |
|
74 'include_dirs': [ |
|
75 '<(DEPTH)/testing/include', |
|
76 '<(DEPTH)/testing/gtest/include', |
|
77 ], |
|
78 'defines': ['_VARIADIC_MAX=10'], |
|
79 }, |
|
80 'defines': ['_VARIADIC_MAX=10'], |
|
81 }, |
|
82 |
|
83 ], |
|
84 } |