OLD | NEW |
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/webrtc.gni") | 9 import("../build/webrtc.gni") |
10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 141 |
142 if (!build_with_chromium && is_clang) { | 142 if (!build_with_chromium && is_clang) { |
143 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 143 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
144 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 144 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
145 } | 145 } |
146 | 146 |
147 if (is_ios) { | 147 if (is_ios) { |
148 configs += [ "//build/config/compiler:enable_arc" ] | 148 configs += [ "//build/config/compiler:enable_arc" ] |
149 } | 149 } |
150 | 150 |
151 if (use_x11) { | |
152 deps += [ "//tools/xdisplaycheck" ] | |
153 } | |
154 | |
155 if (is_android) { | 151 if (is_android) { |
156 deps += [ "//base:base" ] | 152 deps += [ "//base:base" ] |
157 data = [ | 153 data = [ |
158 "../build/android/test_runner.py", | 154 "../build/android/test_runner.py", |
159 ] | 155 ] |
160 } | 156 } |
161 | 157 |
162 if (rtc_use_memcheck) { | 158 if (rtc_use_memcheck) { |
163 data = valgrind_webrtc_dependencies | 159 data = valgrind_webrtc_dependencies |
164 } | 160 } |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 377 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
382 } | 378 } |
383 | 379 |
384 deps = [ | 380 deps = [ |
385 ":test_support", | 381 ":test_support", |
386 ":video_test_common", | 382 ":video_test_common", |
387 "../modules/media_file", | 383 "../modules/media_file", |
388 "//testing/gtest", | 384 "//testing/gtest", |
389 ] | 385 ] |
390 } | 386 } |
OLD | NEW |