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

Unified Diff: gyp/tools.gyp

Issue 348323003: use platform-independent font for gm (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add include tools for skimage 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/utils.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/tools.gyp
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index 256852ddff5dca12a955576286c1dd2cab1f02e7..e16fa4bb7e71bc53a0b7edaa53719b61c46ab3c9 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -17,6 +17,7 @@
'bench_pictures',
'bench_record',
'bench_playback',
+ 'create_test_font',
'dump_record',
'filter',
'gpuveto',
@@ -90,7 +91,10 @@
{
'target_name': 'sk_tool_utils',
'type': 'static_library',
- 'sources': [ '../tools/sk_tool_utils.cpp' ],
+ 'sources': [
+ '../tools/sk_tool_utils.cpp',
+ '../tools/sk_tool_utils_font.cpp',
+ ],
'dependencies': [
'skia_lib.gyp:skia_lib',
],
@@ -266,6 +270,7 @@
'include_dirs': [
# For SkBitmapHasher.h
'../src/utils/',
+ '../tools/',
],
'dependencies': [
'gm_expectations',
@@ -621,6 +626,20 @@
],
},
{
+ 'target_name': 'create_test_font',
+ 'type': 'executable',
+ 'sources': [
+ '../tools/create_test_font.cpp',
+ ],
+ 'include_dirs': [
+ '../src/core',
+ ],
+ 'dependencies': [
+ 'flags.gyp:flags',
+ 'skia_lib.gyp:skia_lib',
+ ],
+ },
+ {
'target_name': 'test_image_decoder',
'type': 'executable',
'sources': [
« no previous file with comments | « gyp/gm.gyp ('k') | gyp/utils.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698