diff options
Diffstat (limited to 'net/crash_cache.scons')
-rw-r--r-- | net/crash_cache.scons | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/net/crash_cache.scons b/net/crash_cache.scons index 496f7b0..0aab3ec 100644 --- a/net/crash_cache.scons +++ b/net/crash_cache.scons @@ -30,5 +30,14 @@ input_files = [ ] -if not env.Bit('mac'): +if not env.AnyBits('linux', 'mac'): + # TODO(port): port to linux and mac? env.ChromeTestProgram('crash_cache', input_files) + +env.ChromeMSVSProject('$NET_DIR/build/crash_cache.vcproj', + dependencies = [ + '$BASE_DIR/build/base.vcproj', + '$NET_DIR/build/net.vcproj', + '$ICU38_DIR/build/icu.vcproj', + ], + guid='{B0EE0599-2913-46A0-A847-A3EC813658D3}') |