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

Side by Side Diff: gyp/tools.gyp

Issue 346453002: Refactor how we handle resources path in Tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix rebase conflict Created 6 years, 6 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 | « gyp/tests.gypi ('k') | samplecode/SampleApp.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 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 'type': 'static_library', 469 'type': 'static_library',
470 'sources': [ 470 'sources': [
471 '../tools/picture_utils.cpp', 471 '../tools/picture_utils.cpp',
472 '../tools/picture_utils.h', 472 '../tools/picture_utils.h',
473 ], 473 ],
474 'dependencies': [ 474 'dependencies': [
475 'skia_lib.gyp:skia_lib', 475 'skia_lib.gyp:skia_lib',
476 ], 476 ],
477 'direct_dependent_settings': { 477 'direct_dependent_settings': {
478 'include_dirs': [ 478 'include_dirs': [
479 '../tools/', 479 '../tools/',
480 ], 480 ],
481 }, 481 },
482 }, 482 },
483 { 483 {
484 'target_name': 'pinspect', 484 'target_name': 'pinspect',
485 'type': 'executable', 485 'type': 'executable',
486 'sources': [ 486 'sources': [
487 '../tools/pinspect.cpp', 487 '../tools/pinspect.cpp',
488 ], 488 ],
489 'dependencies': [ 489 'dependencies': [
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 'type': 'executable', 619 'type': 'executable',
620 'sources': [ 620 'sources': [
621 '../tools/win_lcid.cpp', 621 '../tools/win_lcid.cpp',
622 ], 622 ],
623 }, 623 },
624 ], 624 ],
625 }, 625 },
626 ], 626 ],
627 ], 627 ],
628 } 628 }
OLDNEW
« no previous file with comments | « gyp/tests.gypi ('k') | samplecode/SampleApp.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698