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

Side by Side Diff: webrtc/build/webrtc.gni

Issue 2154693002: Fix inconsistent setting of the rtc_include_unittests flag. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Created 4 years, 5 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 | « build_overrides/webrtc.gni ('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) 2014 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2014 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 import("//build/config/arm.gni") 9 import("//build/config/arm.gni")
10 import("//build/config/features.gni") 10 import("//build/config/features.gni")
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 # Enable to use the Mozilla internal settings. 55 # Enable to use the Mozilla internal settings.
56 build_with_mozilla = false 56 build_with_mozilla = false
57 57
58 rtc_enable_android_opensl = false 58 rtc_enable_android_opensl = false
59 59
60 # Link-Time Optimizations. 60 # Link-Time Optimizations.
61 # Executes code generation at link-time instead of compile-time. 61 # Executes code generation at link-time instead of compile-time.
62 # https://gcc.gnu.org/wiki/LinkTimeOptimization 62 # https://gcc.gnu.org/wiki/LinkTimeOptimization
63 rtc_use_lto = false 63 rtc_use_lto = false
64 64
65 rtc_include_tests = false
66 rtc_restrict_logging = true 65 rtc_restrict_logging = true
67 66
68 # Enable libevent task queues on platforms that support it. 67 # Enable libevent task queues on platforms that support it.
69 if (is_win || is_mac || is_ios || is_nacl) { 68 if (is_win || is_mac || is_ios || is_nacl) {
70 rtc_enable_libevent = false 69 rtc_enable_libevent = false
71 rtc_build_libevent = false 70 rtc_build_libevent = false
72 } else { 71 } else {
73 rtc_enable_libevent = true 72 rtc_enable_libevent = true
74 rtc_build_libevent = true 73 rtc_build_libevent = true
75 } 74 }
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 declare_args() { 123 declare_args() {
125 # Include the iLBC audio codec? 124 # Include the iLBC audio codec?
126 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla) 125 rtc_include_ilbc = !(build_with_chromium || build_with_mozilla)
127 } 126 }
128 127
129 # Make it possible to provide custom locations for some libraries (move these 128 # Make it possible to provide custom locations for some libraries (move these
130 # up into declare_args should we need to actually use them for the GN build). 129 # up into declare_args should we need to actually use them for the GN build).
131 rtc_libvpx_dir = "//third_party/libvpx" 130 rtc_libvpx_dir = "//third_party/libvpx"
132 rtc_libyuv_dir = "//third_party/libyuv" 131 rtc_libyuv_dir = "//third_party/libyuv"
133 rtc_opus_dir = "//third_party/opus" 132 rtc_opus_dir = "//third_party/opus"
OLDNEW
« no previous file with comments | « build_overrides/webrtc.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698