| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 'ssl_root%': '.', | 86 'ssl_root%': '.', |
| 87 | 87 |
| 88 # The Chromium common.gypi we use treats all gyp files without | 88 # The Chromium common.gypi we use treats all gyp files without |
| 89 # chromium_code==1 as third party code. This disables many of the | 89 # chromium_code==1 as third party code. This disables many of the |
| 90 # preferred warning settings. | 90 # preferred warning settings. |
| 91 # | 91 # |
| 92 # We can set this here to have WebRTC code treated as Chromium code. Our | 92 # We can set this here to have WebRTC code treated as Chromium code. Our |
| 93 # third party code will still have the reduced warning settings. | 93 # third party code will still have the reduced warning settings. |
| 94 'chromium_code': 1, | 94 'chromium_code': 1, |
| 95 | 95 |
| 96 # Targets are by default not NaCl untrusted code. Use this variable exclude |
| 97 # code that uses libraries that aren't available in the NaCl sandbox. |
| 98 'nacl_untrusted_build%': 0, |
| 99 |
| 96 # Set to 1 to enable code coverage on Linux using the gcov library. | 100 # Set to 1 to enable code coverage on Linux using the gcov library. |
| 97 'coverage%': 0, | 101 'coverage%': 0, |
| 98 | 102 |
| 99 # Remote bitrate estimator logging/plotting. | 103 # Remote bitrate estimator logging/plotting. |
| 100 'enable_bwe_test_logging%': 0, | 104 'enable_bwe_test_logging%': 0, |
| 101 | 105 |
| 102 # Selects fixed-point code where possible. | 106 # Selects fixed-point code where possible. |
| 103 'prefer_fixed_point%': 0, | 107 'prefer_fixed_point%': 0, |
| 104 | 108 |
| 105 # Enable data logging. Produces text files with data logged within engines | 109 # Enable data logging. Produces text files with data logged within engines |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 # For access to standard POSIXish features, use WEBRTC_POSIX instead | 531 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
| 528 # of a more specific macro. | 532 # of a more specific macro. |
| 529 'defines': [ | 533 'defines': [ |
| 530 'WEBRTC_POSIX', | 534 'WEBRTC_POSIX', |
| 531 ], | 535 ], |
| 532 }], | 536 }], |
| 533 ], | 537 ], |
| 534 }, | 538 }, |
| 535 }, # target_defaults | 539 }, # target_defaults |
| 536 } | 540 } |
| OLD | NEW |