Chromium Code Reviews| 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. | |
|
perkj_webrtc
2016/05/16 12:37:20
Can you add a little bit more descriptive text wha
kjellander_webrtc
2016/05/20 07:16:33
Done.
| |
| 97 'nacl_untrusted_build%': 0, | |
| 98 | |
| 96 # Set to 1 to enable code coverage on Linux using the gcov library. | 99 # Set to 1 to enable code coverage on Linux using the gcov library. |
| 97 'coverage%': 0, | 100 'coverage%': 0, |
| 98 | 101 |
| 99 # Remote bitrate estimator logging/plotting. | 102 # Remote bitrate estimator logging/plotting. |
| 100 'enable_bwe_test_logging%': 0, | 103 'enable_bwe_test_logging%': 0, |
| 101 | 104 |
| 102 # Selects fixed-point code where possible. | 105 # Selects fixed-point code where possible. |
| 103 'prefer_fixed_point%': 0, | 106 'prefer_fixed_point%': 0, |
| 104 | 107 |
| 105 # Enable data logging. Produces text files with data logged within engines | 108 # 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 | 530 # For access to standard POSIXish features, use WEBRTC_POSIX instead |
| 528 # of a more specific macro. | 531 # of a more specific macro. |
| 529 'defines': [ | 532 'defines': [ |
| 530 'WEBRTC_POSIX', | 533 'WEBRTC_POSIX', |
| 531 ], | 534 ], |
| 532 }], | 535 }], |
| 533 ], | 536 ], |
| 534 }, | 537 }, |
| 535 }, # target_defaults | 538 }, # target_defaults |
| 536 } | 539 } |
| OLD | NEW |