Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: webrtc/tools/BUILD.gn

Issue 2529923002: Bug in ExtractFrame API (extracts frames incorrectly) (Closed)
Patch Set: Add missing fclose. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 = [ "//resources/foreman_cif.yuv" ] 237 tools_unittests_resources = [
238 "//resources/foreman_cif.yuv",
239 "//resources/reference_less_video_test_file.y4m",
240 "//resources/video_quality_analysis_frame.txt",
241 ]
238 242
239 if (is_ios) { 243 if (is_ios) {
240 bundle_data("tools_unittests_bundle_data") { 244 bundle_data("tools_unittests_bundle_data") {
241 testonly = true 245 testonly = true
242 sources = tools_unittests_resources 246 sources = tools_unittests_resources
243 outputs = [ 247 outputs = [
244 "{{bundle_resources_dir}}/{{source_file_part}}", 248 "{{bundle_resources_dir}}/{{source_file_part}}",
245 ] 249 ]
246 } 250 }
247 } 251 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 ] 295 ]
292 outputs = [ 296 outputs = [
293 "$root_build_dir/{{source_file_part}}", 297 "$root_build_dir/{{source_file_part}}",
294 ] 298 ]
295 deps = [ 299 deps = [
296 "../logging:rtc_event_log_proto", 300 "../logging:rtc_event_log_proto",
297 ] 301 ]
298 } 302 }
299 } 303 }
300 } 304 }
OLDNEW
« no previous file with comments | « resources/video_quality_analysis_frame.txt.sha1 ('k') | webrtc/tools/frame_analyzer/video_quality_analysis.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698