Moved command line parsing to internal tools and moved back the mic volume thingie.

BUG=
R=henrika@webrtc.org, kjellander@webrtc.org, stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/1491004

git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4054 4adac7df-926f-26a2-2b94-8c16560cd09d
diff --git a/tools/tools.gyp b/tools/tools.gyp
index 3a6787e..6f54150 100644
--- a/tools/tools.gyp
+++ b/tools/tools.gyp
@@ -12,14 +12,6 @@
   ],
   'targets': [
     {
-      'target_name': 'command_line_parser',
-      'type': 'static_library',
-      'sources': [
-        'simple_command_line_parser.h',
-        'simple_command_line_parser.cc',
-      ],
-    }, # command_line_parser
-    {
       'target_name': 'video_quality_analysis',
       'type': 'static_library',
       'dependencies': [
@@ -45,7 +37,7 @@
       'target_name': 'frame_analyzer',
       'type': 'executable',
       'dependencies': [
-        'command_line_parser',
+        '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
         'video_quality_analysis',
       ],
       'sources': [
@@ -56,7 +48,7 @@
       'target_name': 'psnr_ssim_analyzer',
       'type': 'executable',
       'dependencies': [
-        'command_line_parser',
+        '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
         'video_quality_analysis',
       ],
       'sources': [
@@ -67,7 +59,7 @@
       'target_name': 'rgba_to_i420_converter',
       'type': 'executable',
       'dependencies': [
-        'command_line_parser',
+        '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
         '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
       ],
       'sources': [
@@ -95,13 +87,23 @@
       'target_name': 'frame_editor',
       'type': 'executable',
       'dependencies': [
-        'command_line_parser',
+        '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
         'frame_editing_lib',
       ],
       'sources': [
         'frame_editing/frame_editing.cc',
       ],
     }, # frame_editing
+    {
+      'target_name': 'force_mic_volume_max',
+      'type': 'executable',
+      'dependencies': [
+        '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine_core',
+      ],
+      'sources': [
+        'force_mic_volume_max/force_mic_volume_max.cc',
+      ],
+    }, # force_mic_volume_max
   ],
   'conditions': [
     ['include_tests==1', {
@@ -110,8 +112,8 @@
           'target_name': 'tools_unittests',
           'type': 'executable',
           'dependencies': [
-            'command_line_parser',
             'frame_editing_lib',
+            '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser',
             '<(webrtc_root)/test/test.gyp:test_support_main',
             '<(DEPTH)/testing/gtest.gyp:gtest',
           ],