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

Side by Side Diff: testing/gtest.gyp

Issue 439863004: Initial import of unittests using GTest/GMock. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fixes Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « test/unittests/unittests.status ('k') | tools/presubmit.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': 'gtest', 8 'target_name': 'gtest',
9 'toolsets': ['host', 'target'], 9 'toolsets': ['host', 'target'],
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 19 matching lines...) Expand all
30 'gtest/include/gtest/internal/gtest-type-util.h', 30 'gtest/include/gtest/internal/gtest-type-util.h',
31 'gtest/src/gtest-all.cc', 31 'gtest/src/gtest-all.cc',
32 'gtest/src/gtest-death-test.cc', 32 'gtest/src/gtest-death-test.cc',
33 'gtest/src/gtest-filepath.cc', 33 'gtest/src/gtest-filepath.cc',
34 'gtest/src/gtest-internal-inl.h', 34 'gtest/src/gtest-internal-inl.h',
35 'gtest/src/gtest-port.cc', 35 'gtest/src/gtest-port.cc',
36 'gtest/src/gtest-printers.cc', 36 'gtest/src/gtest-printers.cc',
37 'gtest/src/gtest-test-part.cc', 37 'gtest/src/gtest-test-part.cc',
38 'gtest/src/gtest-typed-test.cc', 38 'gtest/src/gtest-typed-test.cc',
39 'gtest/src/gtest.cc', 39 'gtest/src/gtest.cc',
40 'multiprocess_func_list.cc',
41 'multiprocess_func_list.h',
42 'platform_test.h',
43 ], 40 ],
44 'sources!': [ 41 'sources!': [
45 'gtest/src/gtest-all.cc', # Not needed by our build. 42 'gtest/src/gtest-all.cc', # Not needed by our build.
46 ], 43 ],
47 'include_dirs': [ 44 'include_dirs': [
48 'gtest', 45 'gtest',
49 'gtest/include', 46 'gtest/include',
50 ], 47 ],
51 'dependencies': [ 48 'dependencies': [
52 'gtest_prod', 49 'gtest_prod',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 { 146 {
150 'target_name': 'gtest_prod', 147 'target_name': 'gtest_prod',
151 'toolsets': ['host', 'target'], 148 'toolsets': ['host', 'target'],
152 'type': 'none', 149 'type': 'none',
153 'sources': [ 150 'sources': [
154 'gtest/include/gtest/gtest_prod.h', 151 'gtest/include/gtest/gtest_prod.h',
155 ], 152 ],
156 }, 153 },
157 ], 154 ],
158 } 155 }
OLDNEW
« no previous file with comments | « test/unittests/unittests.status ('k') | tools/presubmit.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698