blob: 8f73cb65a1a9b83599fbe8982a2cdece71481f24 [file] [log] [blame]
[email protected]5290aaa2009-05-28 06:02:561# 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{
[email protected]5290aaa2009-05-28 06:02:566 'targets': [
7 {
8 'target_name': 'gmock',
9 'type': '<(library)',
[email protected]f01984812009-05-30 00:02:5310 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F',
[email protected]5290aaa2009-05-28 06:02:5611 'dependencies': [
12 'gtest.gyp:gtest',
13 ],
14 'sources': [
[email protected]22015c332009-06-22 18:32:2115 # Sources based on files in r173 of gmock.
[email protected]5290aaa2009-05-28 06:02:5616 'gmock/include/gmock/gmock-actions.h',
17 'gmock/include/gmock/gmock-cardinalities.h',
18 'gmock/include/gmock/gmock-generated-actions.h',
19 'gmock/include/gmock/gmock-generated-function-mockers.h',
20 'gmock/include/gmock/gmock-generated-matchers.h',
21 'gmock/include/gmock/gmock-generated-nice-strict.h',
22 'gmock/include/gmock/gmock-matchers.h',
[email protected]5290aaa2009-05-28 06:02:5623 'gmock/include/gmock/gmock-spec-builders.h',
24 'gmock/include/gmock/gmock.h',
25 'gmock/include/gmock/internal/gmock-generated-internal-utils.h',
26 'gmock/include/gmock/internal/gmock-internal-utils.h',
27 'gmock/include/gmock/internal/gmock-port.h',
28 'gmock/src/gmock-all.cc',
29 'gmock/src/gmock-cardinalities.cc',
30 'gmock/src/gmock-internal-utils.cc',
31 'gmock/src/gmock-matchers.cc',
[email protected]5290aaa2009-05-28 06:02:5632 'gmock/src/gmock-spec-builders.cc',
33 'gmock/src/gmock.cc',
[email protected]530a94a2009-10-27 00:05:0034 'gmock_mutant.h', # gMock helpers
[email protected]5290aaa2009-05-28 06:02:5635 ],
36 'sources!': [
37 'gmock/src/gmock-all.cc', # Not needed by our build.
38 ],
39 'include_dirs': [
40 'gmock',
41 'gmock/include',
42 ],
43 'direct_dependent_settings': {
44 'include_dirs': [
45 'gmock/include', # So that gmock headers can find themselves.
46 ],
47 },
48 'export_dependent_settings': [
49 'gtest.gyp:gtest',
50 ],
[email protected]5290aaa2009-05-28 06:02:5651 },
52 {
[email protected]016498e2010-12-03 00:59:2353 'target_name': 'gmock_main',
[email protected]5290aaa2009-05-28 06:02:5654 'type': '<(library)',
55 'dependencies': [
56 'gmock',
57 ],
58 'sources': [
59 'gmock/src/gmock_main.cc',
60 ],
61 },
62 ],
63}
[email protected]f5c990c2009-10-06 03:02:3864
65# Local Variables:
66# tab-width:2
67# indent-tabs-mode:nil
68# End:
69# vim: set expandtab tabstop=2 shiftwidth=2: