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

Unified Diff: gyp/tools.gyp

Issue 830513004: Simplify skiatest framework. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: mtklein comments Created 5 years, 11 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
Index: gyp/tools.gyp
diff --git a/gyp/tools.gyp b/gyp/tools.gyp
index 13416664fce6f4b2e2bfd070313f44dc6b23ed24..9b8ca52f91f20286b1836e29e7ff4fdd8ef0ec02 100644
--- a/gyp/tools.gyp
+++ b/gyp/tools.gyp
@@ -619,6 +619,22 @@
},
},
{
+ 'target_name': 'temp_directory',
mtklein 2015/01/18 22:57:55 If this sticks, let's call it temp_dir, tempdir or
+ 'type': 'static_library',
+ 'include_dirs' : [ '../include/core', '../include/config' ],
+ 'sources': [
+ '../tools/TempDir.h',
+ '../tools/TempDir.cpp',
+ ],
+ 'dependencies': [
+ 'flags.gyp:flags',
+ 'skia_lib.gyp:skia_lib',
+ ],
+ 'direct_dependent_settings': {
+ 'include_dirs': [ '../tools', '../include/core', ],
+ },
+ },
+ {
'target_name': 'test_public_includes',
'type': 'static_library',
# Ensure that our public headers don't have unused params so that clients

Powered by Google App Engine
This is Rietveld 408576698