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

Side by Side Diff: testing/gtest.gyp

Issue 7051014: Globally replace <(library) with static_library (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « testing/gmock.gyp ('k') | third_party/bspatch/bspatch.gyp » ('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 (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': 'static_library',
10 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B', 10 'msvs_guid': 'BFE8E2A7-3B3B-43B0-A994-3058B852DB8B',
11 'sources': [ 11 'sources': [
12 'gtest/include/gtest/gtest-death-test.h', 12 'gtest/include/gtest/gtest-death-test.h',
13 'gtest/include/gtest/gtest-message.h', 13 'gtest/include/gtest/gtest-message.h',
14 'gtest/include/gtest/gtest-param-test.h', 14 'gtest/include/gtest/gtest-param-test.h',
15 'gtest/include/gtest/gtest-printers.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',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 }, 116 },
117 }], 117 }],
118 ], 118 ],
119 }], 119 }],
120 ], 120 ],
121 'msvs_disabled_warnings': [4800], 121 'msvs_disabled_warnings': [4800],
122 }, 122 },
123 }, 123 },
124 { 124 {
125 'target_name': 'gtest_main', 125 'target_name': 'gtest_main',
126 'type': '<(library)', 126 'type': 'static_library',
127 'dependencies': [ 127 'dependencies': [
128 'gtest', 128 'gtest',
129 ], 129 ],
130 'sources': [ 130 'sources': [
131 'gtest/src/gtest_main.cc', 131 'gtest/src/gtest_main.cc',
132 ], 132 ],
133 }, 133 },
134 ], 134 ],
135 } 135 }
136 136
137 # Local Variables: 137 # Local Variables:
138 # tab-width:2 138 # tab-width:2
139 # indent-tabs-mode:nil 139 # indent-tabs-mode:nil
140 # End: 140 # End:
141 # vim: set expandtab tabstop=2 shiftwidth=2: 141 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « testing/gmock.gyp ('k') | third_party/bspatch/bspatch.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698