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

Side by Side Diff: gyp/tools.gyp

Issue 1737593003: hack up get_images_from_skps (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: md5 is probably a better idea 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
« no previous file with comments | « no previous file | tools/get_images_from_skps.cpp » ('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 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # GYP file to build various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after
264 'flags.gyp:flags', 264 'flags.gyp:flags',
265 'skia_lib.gyp:skia_lib', 265 'skia_lib.gyp:skia_lib',
266 ], 266 ],
267 }, 267 },
268 { 268 {
269 'target_name': 'get_images_from_skps', 269 'target_name': 'get_images_from_skps',
270 'type': 'executable', 270 'type': 'executable',
271 'sources': [ 271 'sources': [
272 '../tools/get_images_from_skps.cpp', 272 '../tools/get_images_from_skps.cpp',
273 ], 273 ],
274 'include_dirs': [
275 '../include/private',
276 '../src/core',
277 ],
274 'dependencies': [ 278 'dependencies': [
275 'flags.gyp:flags', 279 'flags.gyp:flags',
276 'skia_lib.gyp:skia_lib', 280 'skia_lib.gyp:skia_lib',
277 ], 281 ],
278 }, 282 },
279 { 283 {
280 'target_name': 'gpuveto', 284 'target_name': 'gpuveto',
281 'type': 'executable', 285 'type': 'executable',
282 'sources': [ 286 'sources': [
283 '../tools/gpuveto.cpp', 287 '../tools/gpuveto.cpp',
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 'dependencies': [ 412 'dependencies': [
409 'skia_lib.gyp:skia_lib', 413 'skia_lib.gyp:skia_lib',
410 ], 414 ],
411 'include_dirs': [ 415 'include_dirs': [
412 '../include/private', 416 '../include/private',
413 '../src/core', 417 '../src/core',
414 ], 418 ],
415 'direct_dependent_settings': { 419 'direct_dependent_settings': {
416 'include_dirs': [ 420 'include_dirs': [
417 '../include/private', 421 '../include/private',
418 '../tools', 422 '../tools',
419 ], 423 ],
420 }, 424 },
421 }, 425 },
422 { 426 {
423 'target_name': 'whitelist_typefaces', 427 'target_name': 'whitelist_typefaces',
424 'type': 'executable', 428 'type': 'executable',
425 'sources': [ 429 'sources': [
426 '../tools/whitelist_typefaces.cpp', 430 '../tools/whitelist_typefaces.cpp',
427 ], 431 ],
428 'dependencies': [ 432 'dependencies': [
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 'flags.gyp:flags', 603 'flags.gyp:flags',
600 'skia_lib.gyp:skia_lib', 604 'skia_lib.gyp:skia_lib',
601 'resources', 605 'resources',
602 ], 606 ],
603 }, 607 },
604 ], 608 ],
605 }, 609 },
606 ], 610 ],
607 ], 611 ],
608 } 612 }
OLDNEW
« no previous file with comments | « no previous file | tools/get_images_from_skps.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698