| 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("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| 11 | 11 |
| 12 source_set("tools") { | 12 source_set("tools") { |
| 13 deps = [ | 13 deps = [ |
| 14 ":command_line_parser", | 14 ":command_line_parser", |
| 15 ":frame_analyzer", | |
| 16 ":rgba_to_i420_converter", | |
| 17 ] | 15 ] |
| 16 |
| 17 if (!build_with_chromium) { |
| 18 # TODO(kjellander): Enable these when webrtc:5970 is fixed. |
| 19 deps += [ |
| 20 ":frame_analyzer", |
| 21 ":rgba_to_i420_converter", |
| 22 ] |
| 23 } |
| 18 } | 24 } |
| 19 | 25 |
| 20 source_set("command_line_parser") { | 26 source_set("command_line_parser") { |
| 21 sources = [ | 27 sources = [ |
| 22 "simple_command_line_parser.cc", | 28 "simple_command_line_parser.cc", |
| 23 "simple_command_line_parser.h", | 29 "simple_command_line_parser.h", |
| 24 ] | 30 ] |
| 25 deps = [ | 31 deps = [ |
| 26 "../base:gtest_prod", | 32 "../base:gtest_prod", |
| 27 ] | 33 ] |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 ":video_quality_analysis", | 274 ":video_quality_analysis", |
| 269 "../test:test_support_main", | 275 "../test:test_support_main", |
| 270 "//testing/gtest", | 276 "//testing/gtest", |
| 271 ] | 277 ] |
| 272 | 278 |
| 273 if (is_android) { | 279 if (is_android) { |
| 274 deps += [ "//testing/android/native_test:native_test_support" ] | 280 deps += [ "//testing/android/native_test:native_test_support" ] |
| 275 } | 281 } |
| 276 } | 282 } |
| 277 } | 283 } |
| OLD | NEW |