OLD | NEW |
1 # Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2013 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 { | 9 { |
10 'variables': { | 10 'variables': { |
(...skipping 10 matching lines...) Expand all Loading... |
21 'dependencies': [ | 21 'dependencies': [ |
22 'webrtc/api/api.gyp:*', | 22 'webrtc/api/api.gyp:*', |
23 'webrtc/base/base.gyp:*', | 23 'webrtc/base/base.gyp:*', |
24 'webrtc/common.gyp:*', | 24 'webrtc/common.gyp:*', |
25 'webrtc/common_audio/common_audio.gyp:*', | 25 'webrtc/common_audio/common_audio.gyp:*', |
26 'webrtc/common_video/common_video.gyp:*', | 26 'webrtc/common_video/common_video.gyp:*', |
27 'webrtc/media/media.gyp:*', | 27 'webrtc/media/media.gyp:*', |
28 'webrtc/modules/modules.gyp:*', | 28 'webrtc/modules/modules.gyp:*', |
29 'webrtc/p2p/p2p.gyp:*', | 29 'webrtc/p2p/p2p.gyp:*', |
30 'webrtc/pc/pc.gyp:*', | 30 'webrtc/pc/pc.gyp:*', |
31 'webrtc/stats/stats.gyp:*', | |
32 'webrtc/system_wrappers/system_wrappers.gyp:*', | 31 'webrtc/system_wrappers/system_wrappers.gyp:*', |
33 'webrtc/tools/tools.gyp:*', | 32 'webrtc/tools/tools.gyp:*', |
34 'webrtc/voice_engine/voice_engine.gyp:*', | 33 'webrtc/voice_engine/voice_engine.gyp:*', |
35 'webrtc/webrtc.gyp:*', | 34 'webrtc/webrtc.gyp:*', |
36 '<(webrtc_vp8_dir)/vp8.gyp:*', | 35 '<(webrtc_vp8_dir)/vp8.gyp:*', |
37 '<(webrtc_vp9_dir)/vp9.gyp:*', | 36 '<(webrtc_vp9_dir)/vp9.gyp:*', |
38 ], | 37 ], |
39 'conditions': [ | 38 'conditions': [ |
40 ['OS=="android" and build_with_chromium==0', { | 39 ['OS=="android" and build_with_chromium==0', { |
41 'dependencies': [ | 40 'dependencies': [ |
(...skipping 18 matching lines...) Expand all Loading... |
60 }], | 59 }], |
61 ['(OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7"))', { | 60 ['(OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7"))', { |
62 'dependencies': [ | 61 'dependencies': [ |
63 'webrtc/sdk/sdk.gyp:*', | 62 'webrtc/sdk/sdk.gyp:*', |
64 ], | 63 ], |
65 }], | 64 }], |
66 ], | 65 ], |
67 }, | 66 }, |
68 ], | 67 ], |
69 } | 68 } |
OLD | NEW |