OLD | NEW |
1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 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 # This file exists only because there's no other way to avoid errors in the | 9 # This file exists only because there's no other way to avoid errors in the |
10 # Chromium build due to the inclusion of build/java.gypi. GYP unfortunately | 10 # Chromium build due to the inclusion of build/java.gypi. GYP unfortunately |
(...skipping 16 matching lines...) Expand all Loading... |
27 'dependencies': [ | 27 'dependencies': [ |
28 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection_so', | 28 '<(webrtc_root)/api/api.gyp:libjingle_peerconnection_so', |
29 ], | 29 ], |
30 'variables': { | 30 'variables': { |
31 # Designate as Chromium code and point to our lint settings to | 31 # Designate as Chromium code and point to our lint settings to |
32 # enable linting of the WebRTC code (this is the only way to make | 32 # enable linting of the WebRTC code (this is the only way to make |
33 # lint_action invoke the Android linter). | 33 # lint_action invoke the Android linter). |
34 'android_manifest_path': '<(webrtc_root)/build/android/AndroidManife
st.xml', | 34 'android_manifest_path': '<(webrtc_root)/build/android/AndroidManife
st.xml', |
35 'suppressions_file': '<(webrtc_root)/build/android/suppressions.xml'
, | 35 'suppressions_file': '<(webrtc_root)/build/android/suppressions.xml'
, |
36 'chromium_code': 1, | 36 'chromium_code': 1, |
37 'java_in_dir': 'android/java', | 37 'java_in_dir': 'java', |
38 'webrtc_base_dir': '<(webrtc_root)/base', | 38 'webrtc_base_dir': '<(webrtc_root)/base', |
39 'webrtc_modules_dir': '<(webrtc_root)/modules', | 39 'webrtc_modules_dir': '<(webrtc_root)/modules', |
40 'additional_src_dirs' : [ | 40 'additional_src_dirs' : [ |
41 '<(webrtc_base_dir)/java', | 41 'java/android', |
| 42 '<(webrtc_base_dir)/java/src', |
42 '<(webrtc_modules_dir)/audio_device/android/java/src', | 43 '<(webrtc_modules_dir)/audio_device/android/java/src', |
| 44 |
43 ], | 45 ], |
44 }, | 46 }, |
45 'includes': ['../../build/java.gypi'], | 47 'includes': ['../../build/java.gypi'], |
46 }, | 48 }, |
47 ], # targets | 49 ], # targets |
48 }], # OS=="android" | 50 }], # OS=="android" |
49 ], # conditions | 51 ], # conditions |
50 } | 52 } |
OLD | NEW |