| 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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 import("../build/webrtc.gni") | 10 import("../build/webrtc.gni") |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 227 |
| 228 deps = [ | 228 deps = [ |
| 229 "../modules/audio_processing", | 229 "../modules/audio_processing", |
| 230 "../system_wrappers:metrics_default", | 230 "../system_wrappers:metrics_default", |
| 231 "//build/win:default_exe_manifest", | 231 "//build/win:default_exe_manifest", |
| 232 "//testing/gtest", | 232 "//testing/gtest", |
| 233 "//third_party/gflags", | 233 "//third_party/gflags", |
| 234 ] | 234 ] |
| 235 } | 235 } |
| 236 | 236 |
| 237 tools_unittests_resources = [ | 237 tools_unittests_resources = [ "//resources/foreman_cif.yuv" ] |
| 238 "//resources/foreman_cif.yuv", | |
| 239 "//resources/reference_less_video_test_file.y4m", | |
| 240 "//resources/video_quality_analysis_frame.txt", | |
| 241 ] | |
| 242 | 238 |
| 243 if (is_ios) { | 239 if (is_ios) { |
| 244 bundle_data("tools_unittests_bundle_data") { | 240 bundle_data("tools_unittests_bundle_data") { |
| 245 testonly = true | 241 testonly = true |
| 246 sources = tools_unittests_resources | 242 sources = tools_unittests_resources |
| 247 outputs = [ | 243 outputs = [ |
| 248 "{{bundle_resources_dir}}/{{source_file_part}}", | 244 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 249 ] | 245 ] |
| 250 } | 246 } |
| 251 } | 247 } |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 ] | 291 ] |
| 296 outputs = [ | 292 outputs = [ |
| 297 "$root_build_dir/{{source_file_part}}", | 293 "$root_build_dir/{{source_file_part}}", |
| 298 ] | 294 ] |
| 299 deps = [ | 295 deps = [ |
| 300 "../logging:rtc_event_log_proto", | 296 "../logging:rtc_event_log_proto", |
| 301 ] | 297 ] |
| 302 } | 298 } |
| 303 } | 299 } |
| 304 } | 300 } |
| OLD | NEW |