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

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: Move XmlElementWriter to separate file + minor fixes Created 4 years, 10 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',
196 'xml_element_writer.cc',
197 'xml_element_writer.h',
192 ], 198 ],
193 }, 199 },
194 { 200 {
195 'target_name': 'gn', 201 'target_name': 'gn',
196 'type': 'executable', 202 'type': 'executable',
197 'sources': [ 203 'sources': [
198 'gn_main.cc', 204 'gn_main.cc',
199 ], 205 ],
200 'dependencies': [ 206 'dependencies': [
201 'gn_lib', 207 'gn_lib',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 'substitution_pattern_unittest.cc', 258 'substitution_pattern_unittest.cc',
253 'substitution_writer_unittest.cc', 259 'substitution_writer_unittest.cc',
254 'target_unittest.cc', 260 'target_unittest.cc',
255 'template_unittest.cc', 261 'template_unittest.cc',
256 'test_with_scope.cc', 262 'test_with_scope.cc',
257 'test_with_scope.h', 263 'test_with_scope.h',
258 'tokenizer_unittest.cc', 264 'tokenizer_unittest.cc',
259 'unique_vector_unittest.cc', 265 'unique_vector_unittest.cc',
260 'value_unittest.cc', 266 'value_unittest.cc',
261 'visibility_unittest.cc', 267 'visibility_unittest.cc',
268 'visual_studio_utils_unittest.cc',
269 'visual_studio_writer_unittest.cc',
270 'xml_element_writer_unittest.cc',
262 ], 271 ],
263 'dependencies': [ 272 'dependencies': [
264 'gn_lib', 273 'gn_lib',
265 '../../base/base.gyp:run_all_unittests', 274 '../../base/base.gyp:run_all_unittests',
266 '../../base/base.gyp:test_support_base', 275 '../../base/base.gyp:test_support_base',
267 '../../testing/gtest.gyp:gtest', 276 '../../testing/gtest.gyp:gtest',
268 ], 277 ],
269 }, 278 },
270 ], 279 ],
271 'conditions': [ 280 'conditions': [
272 ['test_isolation_mode != "noop"', { 281 ['test_isolation_mode != "noop"', {
273 'targets': [ 282 'targets': [
274 { 283 {
275 'target_name': 'gn_unittests_run', 284 'target_name': 'gn_unittests_run',
276 'type': 'none', 285 'type': 'none',
277 'dependencies': [ 286 'dependencies': [
278 'gn_unittests', 287 'gn_unittests',
279 ], 288 ],
280 'includes': [ '../../build/isolate.gypi' ], 289 'includes': [ '../../build/isolate.gypi' ],
281 'sources': [ 'gn_unittests.isolate' ], 290 'sources': [ 'gn_unittests.isolate' ],
282 }, 291 },
283 ], 292 ],
284 }], 293 }],
285 ], 294 ],
286 } 295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698