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

Side by Side Diff: tools/gn/gn.gyp

Issue 1570113002: Visual Studio generators for GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Generate .sln and .vcxproj.filters files. Add tests. Created 4 years, 11 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 { 1 {
2 'variables': { 2 'variables': {
3 'chromium_code': 1, 3 'chromium_code': 1,
4 }, 4 },
5 'targets': [ 5 'targets': [
6 { 6 {
7 'target_name': 'gn_lib', 7 'target_name': 'gn_lib',
8 'type': 'static_library', 8 'type': 'static_library',
9 'dependencies': [ 9 'dependencies': [
10 '../../base/base.gyp:base', 10 '../../base/base.gyp:base',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'trace.h', 182 'trace.h',
183 'unique_vector.h', 183 'unique_vector.h',
184 'value.cc', 184 'value.cc',
185 'value.h', 185 'value.h',
186 'value_extractors.cc', 186 'value_extractors.cc',
187 'value_extractors.h', 187 'value_extractors.h',
188 'variables.cc', 188 'variables.cc',
189 'variables.h', 189 'variables.h',
190 'visibility.cc', 190 'visibility.cc',
191 'visibility.h', 191 'visibility.h',
192 'visual_studio_utils.cc',
193 'visual_studio_utils.h',
194 'visual_studio_writer.cc',
195 'visual_studio_writer.h',
192 ], 196 ],
193 }, 197 },
194 { 198 {
195 'target_name': 'gn', 199 'target_name': 'gn',
196 'type': 'executable', 200 'type': 'executable',
197 'sources': [ 201 'sources': [
198 'gn_main.cc', 202 'gn_main.cc',
199 ], 203 ],
200 'dependencies': [ 204 'dependencies': [
201 'gn_lib', 205 'gn_lib',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'substitution_pattern_unittest.cc', 256 'substitution_pattern_unittest.cc',
253 'substitution_writer_unittest.cc', 257 'substitution_writer_unittest.cc',
254 'target_unittest.cc', 258 'target_unittest.cc',
255 'template_unittest.cc', 259 'template_unittest.cc',
256 'test_with_scope.cc', 260 'test_with_scope.cc',
257 'test_with_scope.h', 261 'test_with_scope.h',
258 'tokenizer_unittest.cc', 262 'tokenizer_unittest.cc',
259 'unique_vector_unittest.cc', 263 'unique_vector_unittest.cc',
260 'value_unittest.cc', 264 'value_unittest.cc',
261 'visibility_unittest.cc', 265 'visibility_unittest.cc',
266 'visual_studio_utils_unittest.cc',
267 'visual_studio_writer_unittest.cc',
262 ], 268 ],
263 'dependencies': [ 269 'dependencies': [
264 'gn_lib', 270 'gn_lib',
265 '../../base/base.gyp:run_all_unittests', 271 '../../base/base.gyp:run_all_unittests',
266 '../../base/base.gyp:test_support_base', 272 '../../base/base.gyp:test_support_base',
267 '../../testing/gtest.gyp:gtest', 273 '../../testing/gtest.gyp:gtest',
268 ], 274 ],
269 }, 275 },
270 ], 276 ],
271 'conditions': [ 277 'conditions': [
272 ['test_isolation_mode != "noop"', { 278 ['test_isolation_mode != "noop"', {
273 'targets': [ 279 'targets': [
274 { 280 {
275 'target_name': 'gn_unittests_run', 281 'target_name': 'gn_unittests_run',
276 'type': 'none', 282 'type': 'none',
277 'dependencies': [ 283 'dependencies': [
278 'gn_unittests', 284 'gn_unittests',
279 ], 285 ],
280 'includes': [ '../../build/isolate.gypi' ], 286 'includes': [ '../../build/isolate.gypi' ],
281 'sources': [ 'gn_unittests.isolate' ], 287 'sources': [ 'gn_unittests.isolate' ],
282 }, 288 },
283 ], 289 ],
284 }], 290 }],
285 ], 291 ],
286 } 292 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698