| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 { | 8 { |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['include_tests==1', { | 10 ['include_tests==1', { |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 'webrtc_all_dependencies': [ | 25 'webrtc_all_dependencies': [ |
| 26 'base/base.gyp:*', | 26 'base/base.gyp:*', |
| 27 'sound/sound.gyp:*', | 27 'sound/sound.gyp:*', |
| 28 'common.gyp:*', | 28 'common.gyp:*', |
| 29 'common_audio/common_audio.gyp:*', | 29 'common_audio/common_audio.gyp:*', |
| 30 'common_video/common_video.gyp:*', | 30 'common_video/common_video.gyp:*', |
| 31 'modules/modules.gyp:*', | 31 'modules/modules.gyp:*', |
| 32 'p2p/p2p.gyp:*', | 32 'p2p/p2p.gyp:*', |
| 33 'system_wrappers/system_wrappers.gyp:*', | 33 'system_wrappers/system_wrappers.gyp:*', |
| 34 'tools/tools.gyp:*', | 34 'tools/tools.gyp:*', |
| 35 'video_engine/video_engine.gyp:*', | |
| 36 'voice_engine/voice_engine.gyp:*', | 35 'voice_engine/voice_engine.gyp:*', |
| 37 '<(webrtc_vp8_dir)/vp8.gyp:*', | 36 '<(webrtc_vp8_dir)/vp8.gyp:*', |
| 38 '<(webrtc_vp9_dir)/vp9.gyp:*', | 37 '<(webrtc_vp9_dir)/vp9.gyp:*', |
| 39 ], | 38 ], |
| 40 }, | 39 }, |
| 41 'targets': [ | 40 'targets': [ |
| 42 { | 41 { |
| 43 'target_name': 'webrtc_all', | 42 'target_name': 'webrtc_all', |
| 44 'type': 'none', | 43 'type': 'none', |
| 45 'dependencies': [ | 44 'dependencies': [ |
| 46 '<@(webrtc_all_dependencies)', | 45 '<@(webrtc_all_dependencies)', |
| 47 'webrtc', | 46 'webrtc', |
| 48 ], | 47 ], |
| 49 'conditions': [ | 48 'conditions': [ |
| 50 ['include_tests==1', { | 49 ['include_tests==1', { |
| 51 'dependencies': [ | 50 'dependencies': [ |
| 52 'common_video/common_video_unittests.gyp:*', | 51 'common_video/common_video_unittests.gyp:*', |
| 52 'rtc_unittests', |
| 53 'system_wrappers/system_wrappers_tests.gyp:*', | 53 'system_wrappers/system_wrappers_tests.gyp:*', |
| 54 'test/metrics.gyp:*', | 54 'test/metrics.gyp:*', |
| 55 'test/test.gyp:*', | 55 'test/test.gyp:*', |
| 56 'test/webrtc_test_common.gyp:webrtc_test_common_unittests', | 56 'test/webrtc_test_common.gyp:webrtc_test_common_unittests', |
| 57 'video_engine/video_engine_core_unittests.gyp:video_engine_core_unit
tests', |
| 57 'webrtc_tests', | 58 'webrtc_tests', |
| 58 'rtc_unittests', | |
| 59 ], | 59 ], |
| 60 }], | 60 }], |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 { | 63 { |
| 64 # TODO(pbos): This is intended to contain audio parts as well as soon as | 64 # TODO(pbos): This is intended to contain audio parts as well as soon as |
| 65 # VoiceEngine moves to the same new API format. | 65 # VoiceEngine moves to the same new API format. |
| 66 'target_name': 'webrtc', | 66 'target_name': 'webrtc', |
| 67 'type': 'static_library', | 67 'type': 'static_library', |
| 68 'sources': [ | 68 'sources': [ |
| (...skipping 18 matching lines...) Expand all Loading... |
| 87 ['build_with_chromium==1', { | 87 ['build_with_chromium==1', { |
| 88 'dependencies': [ | 88 'dependencies': [ |
| 89 '<(webrtc_root)/modules/modules.gyp:video_capture', | 89 '<(webrtc_root)/modules/modules.gyp:video_capture', |
| 90 '<(webrtc_root)/modules/modules.gyp:video_render', | 90 '<(webrtc_root)/modules/modules.gyp:video_render', |
| 91 ], | 91 ], |
| 92 }], | 92 }], |
| 93 ], | 93 ], |
| 94 }, | 94 }, |
| 95 ], | 95 ], |
| 96 } | 96 } |
| OLD | NEW |