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

Side by Side Diff: gyp/tools.gyp

Issue 432033002: sk_tool_utils_flags.cpp depends on GetResourcePath (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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 | no next file » | 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 'target_name': 'sk_tool_utils', 91 'target_name': 'sk_tool_utils',
92 'type': 'static_library', 92 'type': 'static_library',
93 'sources': [ 93 'sources': [
94 '../tools/sk_tool_utils.cpp', 94 '../tools/sk_tool_utils.cpp',
95 '../tools/sk_tool_utils_font.cpp', 95 '../tools/sk_tool_utils_font.cpp',
96 ], 96 ],
97 'include_dirs': [ 97 'include_dirs': [
98 '../src/fonts', 98 '../src/fonts',
99 ], 99 ],
100 'dependencies': [ 100 'dependencies': [
101 'resources',
101 'flags.gyp:flags', 102 'flags.gyp:flags',
102 'skia_lib.gyp:skia_lib', 103 'skia_lib.gyp:skia_lib',
103 ], 104 ],
104 'direct_dependent_settings': { 105 'direct_dependent_settings': {
105 'include_dirs': [ '../tools', ], 106 'include_dirs': [ '../tools', ],
106 }, 107 },
107 }, 108 },
108 { 109 {
109 'target_name' : 'timer', 110 'target_name' : 'timer',
110 'type': 'static_library', 111 'type': 'static_library',
(...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after
728 'flags.gyp:flags', 729 'flags.gyp:flags',
729 'skia_lib.gyp:skia_lib', 730 'skia_lib.gyp:skia_lib',
730 'resources', 731 'resources',
731 ], 732 ],
732 }, 733 },
733 ], 734 ],
734 }, 735 },
735 ], 736 ],
736 ], 737 ],
737 } 738 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698