OLD | NEW |
---|---|
1 # | 1 # |
2 # libjingle | 2 # libjingle |
3 # Copyright 2012 Google Inc. | 3 # Copyright 2012 Google Inc. |
4 # | 4 # |
5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
6 # modification, are permitted provided that the following conditions are met: | 6 # modification, are permitted provided that the following conditions are met: |
7 # | 7 # |
8 # 1. Redistributions of source code must retain the above copyright notice, | 8 # 1. Redistributions of source code must retain the above copyright notice, |
9 # this list of conditions and the following disclaimer. | 9 # this list of conditions and the following disclaimer. |
10 # 2. Redistributions in binary form must reproduce the above copyright notice, | 10 # 2. Redistributions in binary form must reproduce the above copyright notice, |
(...skipping 11 matching lines...) Expand all Loading... | |
22 # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | 22 # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
23 # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | 23 # WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
24 # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | 24 # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
25 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 # | 26 # |
27 | 27 |
28 # This file contains common settings for building libjingle components. | 28 # This file contains common settings for building libjingle components. |
29 | 29 |
30 { | 30 { |
31 'variables': { | 31 'variables': { |
32 'webrtc_root%': '<(DEPTH)/webrtc', | 32 'variables': { |
kjellander_webrtc
2016/04/07 07:57:12
I don't think you need any changes in this file. I
agrieve
2016/04/07 13:32:23
Sorry, should have pointed out why I did this, as
kjellander_webrtc
2016/04/07 17:56:14
Oh, I wasn't aware of this. I really should spend
| |
33 'webrtc_root%': '<(DEPTH)/webrtc', | |
34 }, | |
35 'webrtc_root%': '<(webrtc_root)', | |
33 # TODO(ronghuawu): For now, disable the Chrome plugins, which causes a | 36 # TODO(ronghuawu): For now, disable the Chrome plugins, which causes a |
34 # flood of chromium-style warnings. | 37 # flood of chromium-style warnings. |
35 'clang_use_chrome_plugins%': 0, | 38 'clang_use_chrome_plugins%': 0, |
36 # Disable these to not build components which can be externally provided. | 39 # Disable these to not build components which can be externally provided. |
37 'build_json%': 1, | 40 'build_json%': 1, |
41 'test_runner_path': '<(webrtc_root)/build/android/test_runner.py', | |
38 }, | 42 }, |
39 'target_defaults': { | 43 'target_defaults': { |
40 'include_dirs': [ | 44 'include_dirs': [ |
41 '<(DEPTH)', | 45 '<(DEPTH)', |
42 '../..', | 46 '../..', |
43 '../../third_party', | 47 '../../third_party', |
44 '../../third_party/webrtc', | 48 '../../third_party/webrtc', |
45 '../../webrtc', | 49 '../../webrtc', |
46 ], | 50 ], |
47 'conditions': [ | 51 'conditions': [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 'HASH_NAMESPACE=__gnu_cxx', | 122 'HASH_NAMESPACE=__gnu_cxx', |
119 'WEBRTC_POSIX', | 123 'WEBRTC_POSIX', |
120 'DISABLE_DYNAMIC_CAST', | 124 'DISABLE_DYNAMIC_CAST', |
121 # The POSIX standard says we have to define this. | 125 # The POSIX standard says we have to define this. |
122 '_REENTRANT', | 126 '_REENTRANT', |
123 ], | 127 ], |
124 }], | 128 }], |
125 ], | 129 ], |
126 }, # target_defaults | 130 }, # target_defaults |
127 } | 131 } |
OLD | NEW |