OLD | NEW |
---|---|
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 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 contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
10 | 10 |
(...skipping 22 matching lines...) Expand all Loading... | |
33 }, | 33 }, |
34 'build_with_chromium%': '<(build_with_chromium)', | 34 'build_with_chromium%': '<(build_with_chromium)', |
35 'webrtc_root%': '<(webrtc_root)', | 35 'webrtc_root%': '<(webrtc_root)', |
36 'apk_tests_path%': '<(apk_tests_path)', | 36 'apk_tests_path%': '<(apk_tests_path)', |
37 'modules_java_gyp_path%': '<(modules_java_gyp_path)', | 37 'modules_java_gyp_path%': '<(modules_java_gyp_path)', |
38 'webrtc_vp8_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp8', | 38 'webrtc_vp8_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp8', |
39 'webrtc_vp9_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp9', | 39 'webrtc_vp9_dir%': '<(webrtc_root)/modules/video_coding/codecs/vp9', |
40 'include_opus%': 1, | 40 'include_opus%': 1, |
41 'opus_dir%': '<(DEPTH)/third_party/opus', | 41 'opus_dir%': '<(DEPTH)/third_party/opus', |
42 | 42 |
43 # Include the iLBC audio codec? | |
44 'include_ilbc%': 0, | |
hlundin-webrtc
2016/01/12 16:15:41
I'm not sure we want this to be default off. This
kwiberg-webrtc
2016/01/14 10:59:31
I changed it to the same default as before. See pa
| |
45 | |
43 # Enable to use the Mozilla internal settings. | 46 # Enable to use the Mozilla internal settings. |
44 'build_with_mozilla%': 0, | 47 'build_with_mozilla%': 0, |
45 }, | 48 }, |
46 'build_with_chromium%': '<(build_with_chromium)', | 49 'build_with_chromium%': '<(build_with_chromium)', |
47 'build_with_mozilla%': '<(build_with_mozilla)', | 50 'build_with_mozilla%': '<(build_with_mozilla)', |
48 'webrtc_root%': '<(webrtc_root)', | 51 'webrtc_root%': '<(webrtc_root)', |
49 'apk_tests_path%': '<(apk_tests_path)', | 52 'apk_tests_path%': '<(apk_tests_path)', |
50 'modules_java_gyp_path%': '<(modules_java_gyp_path)', | 53 'modules_java_gyp_path%': '<(modules_java_gyp_path)', |
51 'webrtc_vp8_dir%': '<(webrtc_vp8_dir)', | 54 'webrtc_vp8_dir%': '<(webrtc_vp8_dir)', |
52 'webrtc_vp9_dir%': '<(webrtc_vp9_dir)', | 55 'webrtc_vp9_dir%': '<(webrtc_vp9_dir)', |
56 'include_ilbc%': '<(include_ilbc)', | |
53 'include_opus%': '<(include_opus)', | 57 'include_opus%': '<(include_opus)', |
54 'rtc_relative_path%': 1, | 58 'rtc_relative_path%': 1, |
55 'external_libraries%': '0', | 59 'external_libraries%': '0', |
56 'json_root%': '<(DEPTH)/third_party/jsoncpp/source/include/', | 60 'json_root%': '<(DEPTH)/third_party/jsoncpp/source/include/', |
57 # openssl needs to be defined or gyp will complain. Is is only used when | 61 # openssl needs to be defined or gyp will complain. Is is only used when |
58 # when providing external libraries so just use current directory as a | 62 # when providing external libraries so just use current directory as a |
59 # placeholder. | 63 # placeholder. |
60 'ssl_root%': '.', | 64 'ssl_root%': '.', |
61 | 65 |
62 # The Chromium common.gypi we use treats all gyp files without | 66 # The Chromium common.gypi we use treats all gyp files without |
(...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
450 # of a more specific macro. | 454 # of a more specific macro. |
451 'defines': [ | 455 'defines': [ |
452 'WEBRTC_POSIX', | 456 'WEBRTC_POSIX', |
453 ], | 457 ], |
454 }], | 458 }], |
455 ], | 459 ], |
456 }, | 460 }, |
457 }, # target_defaults | 461 }, # target_defaults |
458 } | 462 } |
459 | 463 |
OLD | NEW |