| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 if (is_ios) { | 146 if (is_ios) { |
| 147 configs += [ "//build/config/compiler:enable_arc" ] | 147 configs += [ "//build/config/compiler:enable_arc" ] |
| 148 } | 148 } |
| 149 | 149 |
| 150 if (use_x11) { | 150 if (use_x11) { |
| 151 deps += [ "//tools/xdisplaycheck" ] | 151 deps += [ "//tools/xdisplaycheck" ] |
| 152 } | 152 } |
| 153 | 153 |
| 154 if (is_android) { | 154 if (is_android) { |
| 155 deps += [ "//base:base" ] | 155 deps += [ "//base:base" ] |
| 156 data = [ |
| 157 "../build/android/test_runner.py", |
| 158 ] |
| 156 } | 159 } |
| 157 | 160 |
| 158 if (rtc_use_memcheck) { | 161 if (rtc_use_memcheck) { |
| 159 data = valgrind_webrtc_dependencies | 162 data = valgrind_webrtc_dependencies |
| 160 } | 163 } |
| 161 } | 164 } |
| 162 | 165 |
| 163 # Depend on this target when you want to have test_support but also the | 166 # Depend on this target when you want to have test_support but also the |
| 164 # main method needed for gtest to execute! | 167 # main method needed for gtest to execute! |
| 165 rtc_source_set("test_support_main") { | 168 rtc_source_set("test_support_main") { |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 416 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 419 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 417 } | 420 } |
| 418 | 421 |
| 419 deps = [ | 422 deps = [ |
| 420 ":test_support", | 423 ":test_support", |
| 421 ":video_test_common", | 424 ":video_test_common", |
| 422 "../modules/media_file", | 425 "../modules/media_file", |
| 423 "//testing/gtest", | 426 "//testing/gtest", |
| 424 ] | 427 ] |
| 425 } | 428 } |
| OLD | NEW |