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

Side by Side Diff: testing/gtest.gyp

Issue 140003: Upgrade gtest to r267 and gmock to r173. (Closed)
Patch Set: final fileset. Created 11 years, 6 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 | « testing/gmock/test/gmock_output_test_golden.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 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 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'gtest', 11 'target_name': 'gtest',
12 'type': '<(library)', 12 'type': '<(library)',
13 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B', 13 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B',
14 'sources': [ 14 'sources': [
15 'gtest/include/gtest/internal/gtest-death-test-internal.h', 15 # Sources based on files in r267 of gmock.
16 'gtest/include/gtest/internal/gtest-filepath.h',
17 'gtest/include/gtest/internal/gtest-internal.h',
18 'gtest/include/gtest/internal/gtest-linked_ptr.h',
19 'gtest/include/gtest/internal/gtest-param-util-generated.h',
20 'gtest/include/gtest/internal/gtest-param-util.h',
21 'gtest/include/gtest/internal/gtest-port.h',
22 'gtest/include/gtest/internal/gtest-string.h',
23 'gtest/include/gtest/internal/gtest-type-util.h',
24 'gtest/include/gtest/gtest-death-test.h', 16 'gtest/include/gtest/gtest-death-test.h',
25 'gtest/include/gtest/gtest-message.h', 17 'gtest/include/gtest/gtest-message.h',
26 'gtest/include/gtest/gtest-param-test.h', 18 'gtest/include/gtest/gtest-param-test.h',
27 'gtest/include/gtest/gtest-spi.h', 19 'gtest/include/gtest/gtest-spi.h',
28 'gtest/include/gtest/gtest-test-part.h', 20 'gtest/include/gtest/gtest-test-part.h',
29 'gtest/include/gtest/gtest-typed-test.h', 21 'gtest/include/gtest/gtest-typed-test.h',
30 'gtest/include/gtest/gtest.h', 22 'gtest/include/gtest/gtest.h',
31 'gtest/include/gtest/gtest_pred_impl.h', 23 'gtest/include/gtest/gtest_pred_impl.h',
32 'gtest/include/gtest/gtest_prod.h', 24 'gtest/include/gtest/gtest_prod.h',
33 'gtest/src/gtest-test-part.cc', 25 'gtest/include/gtest/internal/gtest-death-test-internal.h',
34 'gtest/src/gtest-typed-test.cc', 26 'gtest/include/gtest/internal/gtest-filepath.h',
27 'gtest/include/gtest/internal/gtest-internal.h',
28 'gtest/include/gtest/internal/gtest-linked_ptr.h',
29 'gtest/include/gtest/internal/gtest-param-util-generated.h',
30 'gtest/include/gtest/internal/gtest-param-util.h',
31 'gtest/include/gtest/internal/gtest-port.h',
32 'gtest/include/gtest/internal/gtest-string.h',
33 'gtest/include/gtest/internal/gtest-tuple.h',
34 'gtest/include/gtest/internal/gtest-type-util.h',
35 'gtest/src/gtest-all.cc',
35 'gtest/src/gtest-death-test.cc', 36 'gtest/src/gtest-death-test.cc',
36 'gtest/src/gtest-filepath.cc', 37 'gtest/src/gtest-filepath.cc',
37 'gtest/src/gtest-internal-inl.h', 38 'gtest/src/gtest-internal-inl.h',
38 'gtest/src/gtest-port.cc', 39 'gtest/src/gtest-port.cc',
40 'gtest/src/gtest-test-part.cc',
41 'gtest/src/gtest-typed-test.cc',
39 'gtest/src/gtest.cc', 42 'gtest/src/gtest.cc',
40 'multiprocess_func_list.cc', 43 'multiprocess_func_list.cc',
41 'multiprocess_func_list.h', 44 'multiprocess_func_list.h',
42 'platform_test.h', 45 'platform_test.h',
43 ], 46 ],
47 'sources!': [
48 'gtest/src/gtest-all.cc', # Not needed by our build.
49 ],
44 'include_dirs': [ 50 'include_dirs': [
45 'gtest', 51 'gtest',
46 'gtest/include', 52 'gtest/include',
47 ], 53 ],
48 'conditions': [ 54 'conditions': [
49 [ 'OS == "mac"', { 'sources': [ 'platform_test_mac.mm' ] } ], 55 [ 'OS == "mac"', { 'sources': [ 'platform_test_mac.mm' ] } ],
50 ], 56 ],
51 'direct_dependent_settings': { 57 'direct_dependent_settings': {
52 'defines': [ 58 'defines': [
53 'UNIT_TEST', 59 'UNIT_TEST',
(...skipping 13 matching lines...) Expand all
67 'type': '<(library)', 73 'type': '<(library)',
68 'dependencies': [ 74 'dependencies': [
69 'gtest', 75 'gtest',
70 ], 76 ],
71 'sources': [ 77 'sources': [
72 'gtest/src/gtest_main.cc', 78 'gtest/src/gtest_main.cc',
73 ], 79 ],
74 }, 80 },
75 ], 81 ],
76 } 82 }
OLDNEW
« no previous file with comments | « testing/gmock/test/gmock_output_test_golden.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698