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

Side by Side Diff: testing/gmock.gyp

Issue 2847693002: V8: Roll googletest to 1.8.0.
Patch Set: Incorporated http://crrev.com/2849783003 Created 3 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
OLDNEW
1 # Copyright 2014 the V8 project authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gmock', 8 'target_name': 'gmock',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 'gtest.gyp:gtest', 11 '../third_party/googletest/googlemock.gyp:googlemock',
12 ], 12 ],
13 'sources': [ 13 'sources': [
14 # Sources based on files in r173 of gmock.
15 'gmock/include/gmock/gmock-actions.h', 14 'gmock/include/gmock/gmock-actions.h',
16 'gmock/include/gmock/gmock-cardinalities.h',
17 'gmock/include/gmock/gmock-generated-actions.h',
18 'gmock/include/gmock/gmock-generated-function-mockers.h', 15 'gmock/include/gmock/gmock-generated-function-mockers.h',
19 'gmock/include/gmock/gmock-generated-matchers.h',
20 'gmock/include/gmock/gmock-generated-nice-strict.h',
21 'gmock/include/gmock/gmock-matchers.h', 16 'gmock/include/gmock/gmock-matchers.h',
22 'gmock/include/gmock/gmock-spec-builders.h',
23 'gmock/include/gmock/gmock.h', 17 'gmock/include/gmock/gmock.h',
24 'gmock/include/gmock/internal/gmock-generated-internal-utils.h',
25 'gmock/include/gmock/internal/gmock-internal-utils.h',
26 'gmock/include/gmock/internal/gmock-port.h',
27 'gmock/src/gmock-all.cc',
28 'gmock/src/gmock-cardinalities.cc',
29 'gmock/src/gmock-internal-utils.cc',
30 'gmock/src/gmock-matchers.cc',
31 'gmock/src/gmock-spec-builders.cc',
32 'gmock/src/gmock.cc',
33 'gmock-support.h', # gMock helpers 18 'gmock-support.h', # gMock helpers
34 'gmock_custom/gmock/internal/custom/gmock-port.h',
35 ],
36 'sources!': [
37 'gmock/src/gmock-all.cc', # Not needed by our build.
38 ],
39 'include_dirs': [
40 'gmock_custom',
41 'gmock',
42 'gmock/include',
43 ],
44 'all_dependent_settings': {
45 'include_dirs': [
46 'gmock_custom',
47 'gmock/include', # So that gmock headers can find themselves.
48 ],
49 },
50 'export_dependent_settings': [
51 'gtest.gyp:gtest',
52 ], 19 ],
53 'conditions': [ 20 'conditions': [
54 ['want_separate_host_toolset==1', { 21 ['want_separate_host_toolset==1', {
55 'toolsets': ['host', 'target'], 22 'toolsets': ['host', 'target'],
56 }, { 23 }, {
57 'toolsets': ['target'], 24 'toolsets': ['target'],
58 }], 25 }],
59 ], 26 ],
60 }, 27 },
61 { 28 {
62 'target_name': 'gmock_main', 29 'target_name': 'gmock_main',
63 'type': 'static_library', 30 'type': 'static_library',
64 'dependencies': [ 31 'dependencies': [
65 'gmock', 32 '../third_party/googletest/googlemock.gyp:googlemock_main',
66 ],
67 'sources': [
68 'gmock/src/gmock_main.cc',
69 ], 33 ],
70 }, 34 },
71 ], 35 ],
72 } 36 }
OLDNEW
« no previous file with comments | « testing/DEPS ('k') | testing/gmock/BUILD.gn » ('j') | testing/gtest/include/gtest/gtest_prod.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698