Chromium Code Reviews| 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 |