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

Side by Side Diff: testing/gtest.gyp

Issue 3427004: clang: update gtest/gmock (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: yakshave Created 10 years, 3 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_test_utils.py ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gtest', 8 'target_name': 'gtest',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B', 10 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B',
11 'sources': [ 11 'sources': [
12 # Sources based on files in r267 of gmock.
13 'gtest/include/gtest/gtest-death-test.h', 12 'gtest/include/gtest/gtest-death-test.h',
14 'gtest/include/gtest/gtest-message.h', 13 'gtest/include/gtest/gtest-message.h',
15 'gtest/include/gtest/gtest-param-test.h', 14 'gtest/include/gtest/gtest-param-test.h',
15 'gtest/include/gtest/gtest-printers.h',
16 'gtest/include/gtest/gtest-spi.h', 16 'gtest/include/gtest/gtest-spi.h',
17 'gtest/include/gtest/gtest-test-part.h', 17 'gtest/include/gtest/gtest-test-part.h',
18 'gtest/include/gtest/gtest-typed-test.h', 18 'gtest/include/gtest/gtest-typed-test.h',
19 'gtest/include/gtest/gtest.h', 19 'gtest/include/gtest/gtest.h',
20 'gtest/include/gtest/gtest_pred_impl.h', 20 'gtest/include/gtest/gtest_pred_impl.h',
21 'gtest/include/gtest/gtest_prod.h', 21 'gtest/include/gtest/gtest_prod.h',
22 'gtest/include/gtest/internal/gtest-death-test-internal.h', 22 'gtest/include/gtest/internal/gtest-death-test-internal.h',
23 'gtest/include/gtest/internal/gtest-filepath.h', 23 'gtest/include/gtest/internal/gtest-filepath.h',
24 'gtest/include/gtest/internal/gtest-internal.h', 24 'gtest/include/gtest/internal/gtest-internal.h',
25 'gtest/include/gtest/internal/gtest-linked_ptr.h', 25 'gtest/include/gtest/internal/gtest-linked_ptr.h',
26 'gtest/include/gtest/internal/gtest-param-util-generated.h', 26 'gtest/include/gtest/internal/gtest-param-util-generated.h',
27 'gtest/include/gtest/internal/gtest-param-util.h', 27 'gtest/include/gtest/internal/gtest-param-util.h',
28 'gtest/include/gtest/internal/gtest-port.h', 28 'gtest/include/gtest/internal/gtest-port.h',
29 'gtest/include/gtest/internal/gtest-string.h', 29 'gtest/include/gtest/internal/gtest-string.h',
30 'gtest/include/gtest/internal/gtest-tuple.h', 30 'gtest/include/gtest/internal/gtest-tuple.h',
31 'gtest/include/gtest/internal/gtest-type-util.h', 31 'gtest/include/gtest/internal/gtest-type-util.h',
32 'gtest/src/gtest-all.cc', 32 'gtest/src/gtest-all.cc',
33 'gtest/src/gtest-death-test.cc', 33 'gtest/src/gtest-death-test.cc',
34 'gtest/src/gtest-filepath.cc', 34 'gtest/src/gtest-filepath.cc',
35 'gtest/src/gtest-internal-inl.h', 35 'gtest/src/gtest-internal-inl.h',
36 'gtest/src/gtest-port.cc', 36 'gtest/src/gtest-port.cc',
37 'gtest/src/gtest-printers.cc',
37 'gtest/src/gtest-test-part.cc', 38 'gtest/src/gtest-test-part.cc',
38 'gtest/src/gtest-typed-test.cc', 39 'gtest/src/gtest-typed-test.cc',
39 'gtest/src/gtest.cc', 40 'gtest/src/gtest.cc',
40 'multiprocess_func_list.cc', 41 'multiprocess_func_list.cc',
41 'multiprocess_func_list.h', 42 'multiprocess_func_list.h',
42 'platform_test.h', 43 'platform_test.h',
43 ], 44 ],
44 'sources!': [ 45 'sources!': [
45 'gtest/src/gtest-all.cc', # Not needed by our build. 46 'gtest/src/gtest-all.cc', # Not needed by our build.
46 ], 47 ],
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 ], 106 ],
106 }, 107 },
107 ], 108 ],
108 } 109 }
109 110
110 # Local Variables: 111 # Local Variables:
111 # tab-width:2 112 # tab-width:2
112 # indent-tabs-mode:nil 113 # indent-tabs-mode:nil
113 # End: 114 # End:
114 # vim: set expandtab tabstop=2 shiftwidth=2: 115 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « testing/gmock/test/gmock_test_utils.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698