OLD | NEW |
---|---|
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
kjellander_webrtc
2016/04/04 06:09:45
You already added a target in webrtc/system_wrappe
Simon Hosie
2016/04/05 01:15:48
Done.
| |
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 'conditions': [ | 10 'conditions': [ |
11 ['OS=="android"', { | 11 ['OS=="linux"', { |
12 'targets': [ | 12 'targets': [ |
13 { | 13 { |
14 'target_name': 'cpu_features_android', | 14 'target_name': 'cpu_features_linux', |
15 'type': 'static_library', | 15 'type': 'static_library', |
16 'sources': [ | 16 'sources': [ |
17 'source/cpu_features_android.c', | 17 'source/cpu_features_linux.c', |
18 ], | |
19 'dependencies': [ | |
20 '../../build/android/ndk.gyp:cpu_features', | |
21 ], | 18 ], |
22 }, | 19 }, |
23 ], | 20 ], |
21 'dependencies': [ | |
22 '<(webrtc_root)/common.gyp:webrtc_common', | |
23 ], | |
24 }], | 24 }], |
25 ], # conditions | 25 ], # conditions |
26 } | 26 } |
OLD | NEW |