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

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: 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_writer.cc',
193 'visual_studio_writer.h',
192 ], 194 ],
193 }, 195 },
194 { 196 {
195 'target_name': 'gn', 197 'target_name': 'gn',
196 'type': 'executable', 198 'type': 'executable',
197 'sources': [ 199 'sources': [
198 'gn_main.cc', 200 'gn_main.cc',
199 ], 201 ],
200 'dependencies': [ 202 'dependencies': [
201 'gn_lib', 203 'gn_lib',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 'dependencies': [ 289 'dependencies': [
288 'gn_unittests', 290 'gn_unittests',
289 ], 291 ],
290 'includes': [ '../../build/isolate.gypi' ], 292 'includes': [ '../../build/isolate.gypi' ],
291 'sources': [ 'gn_unittests.isolate' ], 293 'sources': [ 'gn_unittests.isolate' ],
292 }, 294 },
293 ], 295 ],
294 }], 296 }],
295 ], 297 ],
296 } 298 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698