diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/SConscript.main | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index a06448b..fd41d60 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -61,6 +61,7 @@ root_env = Environment( GEARS_DIR = '$OBJ_ROOT/gears', GOOGLE_UPDATE_DIR = '$OBJ_ROOT/google_update', GOOGLEURL_DIR = '$OBJ_ROOT/googleurl', + MEDIA_DIR = '$OBJ_ROOT/media', NET_DIR = '$OBJ_ROOT/net', RLZ_DIR = '$OBJ_ROOT/rlz', SANDBOX_DIR = '$OBJ_ROOT/sandbox', @@ -205,6 +206,9 @@ if LoadComponent('googleurl'): # file. sconscripts.append('$GOOGLEURL_DIR/googleurl.scons') +if LoadComponent('media'): + sconscripts.append('$MEDIA_DIR/media.scons') + if LoadComponent('net'): sconscripts.append('$NET_DIR/net.scons') |