git-svn-id: http://webrtc.googlecode.com/svn/trunk@170 4adac7df-926f-26a2-2b94-8c16560cd09d

This commit is contained in:
niklase@google.com
2011-07-07 09:18:14 +00:00
parent b849792667
commit f6d205aecb
2 changed files with 10 additions and 10 deletions

4
DEPS
View File

@ -81,12 +81,12 @@ hooks = [
# by gyp and we use it to set Chromium related variables (inside_chromium_build) # by gyp and we use it to set Chromium related variables (inside_chromium_build)
# to 0 and enable the standalone build. # to 0 and enable the standalone build.
"pattern": ".", "pattern": ".",
"action": ["python", "trunk/tools/create_supplement_gypi.py", "trunk/supplement.gypi"], "action": ["python", "trunk/tools/create_supplement_gypi.py", "trunk/src/supplement.gypi"],
}, },
# A change to a .gyp, .gypi, or to GYP itself should run the generator. # A change to a .gyp, .gypi, or to GYP itself should run the generator.
{ {
"pattern": ".", "pattern": ".",
"action": ["python", "build/gyp_chromium", "--depth=.", "trunk/webrtc.gyp"], "action": ["python", "trunk/build/gyp_chromium", "--depth=.", "trunk/webrtc.gyp"],
}, },
] ]

View File

@ -8,22 +8,22 @@
{ {
'includes': [ 'includes': [
'common_settings.gypi', # Common settings 'src/common_settings.gypi', # Common settings
], ],
'targets': [ 'targets': [
{ {
'target_name': 'auto_tests', 'target_name': 'auto_tests',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'voice_engine.gyp:voe_auto_test', 'src/voice_engine.gyp:voe_auto_test',
'video_engine.gyp:vie_auto_test', 'src/video_engine.gyp:vie_auto_test',
], ],
}, },
{ {
'target_name': 'cmd_test', 'target_name': 'cmd_test',
'type': 'none', 'type': 'none',
'dependencies': [ 'dependencies': [
'voice_engine.gyp:voe_cmd_test', 'src/voice_engine.gyp:voe_cmd_test',
], ],
}, },
{ {
@ -56,8 +56,8 @@
'peerconnection/samples/client/main_wnd.h', 'peerconnection/samples/client/main_wnd.h',
'peerconnection/samples/client/peer_connection_client.cc', 'peerconnection/samples/client/peer_connection_client.cc',
'peerconnection/samples/client/peer_connection_client.h', 'peerconnection/samples/client/peer_connection_client.h',
'../third_party/libjingle/source/talk/base/win32socketinit.cc', 'third_party/libjingle/source/talk/base/win32socketinit.cc',
'../third_party/libjingle/source/talk/base/win32socketserver.cc', 'third_party/libjingle/source/talk/base/win32socketserver.cc',
], ],
'msvs_settings': { 'msvs_settings': {
'VCLinkerTool': { 'VCLinkerTool': {
@ -65,10 +65,10 @@
}, },
}, },
'dependencies': [ 'dependencies': [
'../third_party/libjingle/libjingle.gyp:libjingle_app', 'third_party/libjingle/libjingle.gyp:libjingle_app',
], ],
'include_dirs': [ 'include_dirs': [
'../third_party/libjingle/source', 'third_party/libjingle/source',
], ],
}, },
], # targets ], # targets