Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(943)

Side by Side Diff: testing/gmock.gyp

Issue 113163: Add gmock into our dependencies. (Closed)
Patch Set: Making gmock work with windows. Requires adding boost. Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome.sln ('k') | testing/gtest.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2009 The Chromium 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 'includes': [
7 '../build/common.gypi',
8 ],
9 'targets': [
10 {
11 'target_name': 'gmock',
12 'type': '<(library)',
13 'msvs_guid': 'F9D886ED-B09F-4b74-932F-D8E4691E6B7F',
14 'dependencies': [
15 '../third_party/boost/boost.gyp:boost_tuple',
16 'gtest.gyp:gtest',
17 ],
18 'sources': [
19 'gmock/include/gmock/gmock-actions.h',
20 'gmock/include/gmock/gmock-cardinalities.h',
21 'gmock/include/gmock/gmock-generated-actions.h',
22 'gmock/include/gmock/gmock-generated-function-mockers.h',
23 'gmock/include/gmock/gmock-generated-matchers.h',
24 'gmock/include/gmock/gmock-generated-nice-strict.h',
25 'gmock/include/gmock/gmock-matchers.h',
26 'gmock/include/gmock/gmock-printers.h',
27 'gmock/include/gmock/gmock-spec-builders.h',
28 'gmock/include/gmock/gmock.h',
29 'gmock/include/gmock/internal/gmock-generated-internal-utils.h',
30 'gmock/include/gmock/internal/gmock-internal-utils.h',
31 'gmock/include/gmock/internal/gmock-port.h',
32 'gmock/src/gmock-all.cc',
33 'gmock/src/gmock-cardinalities.cc',
34 'gmock/src/gmock-internal-utils.cc',
35 'gmock/src/gmock-matchers.cc',
36 'gmock/src/gmock-printers.cc',
37 'gmock/src/gmock-spec-builders.cc',
38 'gmock/src/gmock.cc',
39 ],
40 'sources!': [
41 'gmock/src/gmock-all.cc', # Not needed by our build.
42 ],
43 'include_dirs': [
44 'gmock',
45 'gmock/include',
46 ],
47 'direct_dependent_settings': {
48 'include_dirs': [
49 'gmock/include', # So that gmock headers can find themselves.
50 ],
51 },
52 'export_dependent_settings': [
53 'gtest.gyp:gtest',
54 ],
55 'conditions': [
56 ['OS=="win"', {
57 'export_dependent_settings': [
58 '../third_party/boost/boost.gyp:boost_tuple',
59 ]
60 }],
61 ],
62 },
63 {
64 # Note that calling this "gmock_main" confuses the scons build,
65 # which uses "_main" on scons files to produce special behavior.
66 'target_name': 'gmockmain',
67 'type': '<(library)',
68 'dependencies': [
69 'gmock',
70 ],
71 'sources': [
72 'gmock/src/gmock_main.cc',
73 ],
74 },
75 ],
76 }
OLDNEW
« no previous file with comments | « chrome/chrome.sln ('k') | testing/gtest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698