Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Side by Side Diff: webrtc/build/common.gypi

Issue 1984613002: base.gyp: Add conditions for NaCl builds. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Improved documentation Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/base.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webrtc/base/base.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698