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

Unified Diff: gyp/tools.gyp

Issue 1461633002: Clean up dead code: render_pdfs. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | tools/render_pdfs_main.cpp » ('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 610eda622e322947f4a08c69d1515edc1edfa626..3bd66e3e220680bb5f2e3ef68b3c8e1556edffe4 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -26,7 +26,6 @@
'lua_app',
'lua_pictures',
'pinspect',
- 'render_pdfs',
'skdiff',
'skhello',
'skpdiff',
@@ -401,61 +400,6 @@
],
},
{
- 'target_name': 'render_pdfs',
- 'type': 'executable',
- 'sources': [
- '../tools/render_pdfs_main.cpp',
- ],
- 'include_dirs': [
- '../include/private',
- '../src/core',
- '../src/pipe/utils/',
- '../src/utils/',
- ],
- 'dependencies': [
- 'flags.gyp:flags',
- 'pdf.gyp:pdf',
- 'skia_lib.gyp:skia_lib',
- 'tools.gyp:picture_utils',
- 'tools.gyp:proc_stats',
- ],
- 'conditions': [
- ['skia_win_debuggers_path and skia_os == "win"',
- {
- 'dependencies': [
- 'tools.gyp:win_dbghelp',
- ],
- },
- ],
- # VS static libraries don't have a linker option. We must set a global
- # project linker option, or add it to each executable.
- ['skia_win_debuggers_path and skia_os == "win" and '
- 'skia_arch_type == "x86_64"',
- {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalDependencies': [
- '<(skia_win_debuggers_path)/x64/DbgHelp.lib',
- ],
- },
- },
- },
- ],
- ['skia_win_debuggers_path and skia_os == "win" and '
- 'skia_arch_type == "x86"',
- {
- 'msvs_settings': {
- 'VCLinkerTool': {
- 'AdditionalDependencies': [
- '<(skia_win_debuggers_path)/DbgHelp.lib',
- ],
- },
- },
- },
- ],
- ],
- },
- {
'target_name': 'picture_utils',
'type': 'static_library',
'sources': [
« no previous file with comments | « no previous file | tools/render_pdfs_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698