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

Side by Side Diff: media/base/BUILD.gn

Issue 2088273003: Video Color Managament (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bugfix Created 4 years, 5 months 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 "time_source.h", 216 "time_source.h",
217 "timestamp_constants.h", 217 "timestamp_constants.h",
218 "user_input_monitor.cc", 218 "user_input_monitor.cc",
219 "user_input_monitor.h", 219 "user_input_monitor.h",
220 "video_capture_types.cc", 220 "video_capture_types.cc",
221 "video_capture_types.h", 221 "video_capture_types.h",
222 "video_capturer_source.cc", 222 "video_capturer_source.cc",
223 "video_capturer_source.h", 223 "video_capturer_source.h",
224 "video_codecs.cc", 224 "video_codecs.cc",
225 "video_codecs.h", 225 "video_codecs.h",
226 "video_color_space.cc",
227 "video_color_space.h",
226 "video_decoder.cc", 228 "video_decoder.cc",
227 "video_decoder.h", 229 "video_decoder.h",
228 "video_decoder_config.cc", 230 "video_decoder_config.cc",
229 "video_decoder_config.h", 231 "video_decoder_config.h",
230 "video_frame.cc", 232 "video_frame.cc",
231 "video_frame.h", 233 "video_frame.h",
232 "video_frame_metadata.cc", 234 "video_frame_metadata.cc",
233 "video_frame_metadata.h", 235 "video_frame_metadata.h",
234 "video_frame_pool.cc", 236 "video_frame_pool.cc",
235 "video_frame_pool.h", 237 "video_frame_pool.h",
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
452 "seekable_buffer_unittest.cc", 454 "seekable_buffer_unittest.cc",
453 "serial_runner_unittest.cc", 455 "serial_runner_unittest.cc",
454 "sinc_resampler_unittest.cc", 456 "sinc_resampler_unittest.cc",
455 "stream_parser_unittest.cc", 457 "stream_parser_unittest.cc",
456 "text_ranges_unittest.cc", 458 "text_ranges_unittest.cc",
457 "text_renderer_unittest.cc", 459 "text_renderer_unittest.cc",
458 "time_delta_interpolator_unittest.cc", 460 "time_delta_interpolator_unittest.cc",
459 "user_input_monitor_unittest.cc", 461 "user_input_monitor_unittest.cc",
460 "vector_math_unittest.cc", 462 "vector_math_unittest.cc",
461 "video_codecs_unittest.cc", 463 "video_codecs_unittest.cc",
464 "video_color_space_unittest.cc",
462 "video_decoder_config_unittest.cc", 465 "video_decoder_config_unittest.cc",
463 "video_frame_pool_unittest.cc", 466 "video_frame_pool_unittest.cc",
464 "video_frame_unittest.cc", 467 "video_frame_unittest.cc",
465 "video_util_unittest.cc", 468 "video_util_unittest.cc",
466 "wall_clock_time_source_unittest.cc", 469 "wall_clock_time_source_unittest.cc",
467 "yuv_convert_unittest.cc", 470 "yuv_convert_unittest.cc",
468 ] 471 ]
469 configs += [ 472 configs += [
470 "//build/config/compiler:no_size_t_to_int_warning", 473 "//build/config/compiler:no_size_t_to_int_warning",
471 "//media:media_config", 474 "//media:media_config",
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
602 605
603 fuzzer_test("media_container_names_fuzzer") { 606 fuzzer_test("media_container_names_fuzzer") {
604 sources = [ 607 sources = [
605 "container_names_fuzzertest.cc", 608 "container_names_fuzzertest.cc",
606 ] 609 ]
607 deps = [ 610 deps = [
608 "//base", 611 "//base",
609 "//media", 612 "//media",
610 ] 613 ]
611 } 614 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698