| 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': { | 
| 11     'include_examples%': 1, | 11     'include_examples%': 1, | 
| 12     'include_tests%': 1, | 12     'include_tests%': 1, | 
| 13     'webrtc_root_additional_dependencies': [], |  | 
| 14   }, | 13   }, | 
| 15   'targets': [ | 14   'targets': [ | 
| 16     { | 15     { | 
| 17       'target_name': 'All', | 16       'target_name': 'All', | 
| 18       'type': 'none', | 17       'type': 'none', | 
| 19       'dependencies': [ | 18       'dependencies': [ | 
| 20         'webrtc/webrtc.gyp:*', | 19         'webrtc/webrtc.gyp:*', | 
| 21         '<@(webrtc_root_additional_dependencies)', |  | 
| 22       ], | 20       ], | 
| 23       'conditions': [ | 21       'conditions': [ | 
| 24         ['include_examples==1', { | 22         ['include_examples==1', { | 
| 25           'dependencies': [ | 23           'dependencies': [ | 
| 26             'webrtc/webrtc_examples.gyp:*', | 24             'webrtc/webrtc_examples.gyp:*', | 
| 27           ], | 25           ], | 
| 28         }], | 26         }], | 
| 29         ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 27         ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 
| 30           'dependencies': [ | 28           'dependencies': [ | 
| 31             'talk/app/webrtc/legacy_objc_api.gyp:*', | 29             'talk/app/webrtc/legacy_objc_api.gyp:*', | 
| 32           ], | 30           ], | 
| 33           'conditions': [ | 31           'conditions': [ | 
| 34             ['include_tests==1', { | 32             ['include_tests==1', { | 
| 35               'dependencies': [ | 33               'dependencies': [ | 
| 36                 'talk/app/webrtc/legacy_objc_api_tests.gyp:*', | 34                 'talk/app/webrtc/legacy_objc_api_tests.gyp:*', | 
| 37               ], | 35               ], | 
| 38             }], | 36             }], | 
| 39           ], | 37           ], | 
| 40         }], | 38         }], | 
| 41       ], | 39       ], | 
| 42     }, | 40     }, | 
| 43   ], | 41   ], | 
| 44 } | 42 } | 
| OLD | NEW | 
|---|