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("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 "../test:channel_transport", | 316 "../test:channel_transport", |
317 "../voice_engine", | 317 "../voice_engine", |
318 "//build/config/sanitizers:deps", | 318 "//build/config/sanitizers:deps", |
319 "//build/win:default_exe_manifest", | 319 "//build/win:default_exe_manifest", |
320 "//testing/gtest", | 320 "//testing/gtest", |
321 "//third_party/gflags", | 321 "//third_party/gflags", |
322 ] | 322 ] |
323 } | 323 } |
324 | 324 |
325 if (is_android || is_ios) { | 325 if (is_android || is_ios) { |
326 tools_unittests_resources = [ "//resources/foreman_cif_short.yuv" ] | 326 tools_unittests_resources = [ "//resources/foreman_cif.yuv" ] |
327 } | 327 } |
328 | 328 |
329 if (is_ios) { | 329 if (is_ios) { |
330 bundle_data("tools_unittests_bundle_data") { | 330 bundle_data("tools_unittests_bundle_data") { |
331 testonly = true | 331 testonly = true |
332 sources = tools_unittests_resources | 332 sources = tools_unittests_resources |
333 outputs = [ | 333 outputs = [ |
334 "{{bundle_resources_dir}}/{{source_file_part}}", | 334 "{{bundle_resources_dir}}/{{source_file_part}}", |
335 ] | 335 ] |
336 } | 336 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 ] | 385 ] |
386 outputs = [ | 386 outputs = [ |
387 "$root_build_dir/{{source_file_part}}", | 387 "$root_build_dir/{{source_file_part}}", |
388 ] | 388 ] |
389 deps = [ | 389 deps = [ |
390 "..:rtc_event_log_proto", | 390 "..:rtc_event_log_proto", |
391 ] | 391 ] |
392 } | 392 } |
393 } | 393 } |
394 } | 394 } |
OLD | NEW |