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

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

Issue 591313008: Add support for Rec709 color space videos in software YUV convert path. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add enum to mojom Created 5 years, 11 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
« no previous file with comments | « content/browser/media/media_browsertest.cc ('k') | media/base/simd/convert_rgb_to_yuv_sse2.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 "seekable_buffer.cc", 134 "seekable_buffer.cc",
135 "seekable_buffer.h", 135 "seekable_buffer.h",
136 "serial_runner.cc", 136 "serial_runner.cc",
137 "serial_runner.h", 137 "serial_runner.h",
138 "simd/convert_rgb_to_yuv.h", 138 "simd/convert_rgb_to_yuv.h",
139 "simd/convert_rgb_to_yuv_c.cc", 139 "simd/convert_rgb_to_yuv_c.cc",
140 "simd/convert_yuv_to_rgb.h", 140 "simd/convert_yuv_to_rgb.h",
141 "simd/convert_yuv_to_rgb_c.cc", 141 "simd/convert_yuv_to_rgb_c.cc",
142 "simd/filter_yuv.h", 142 "simd/filter_yuv.h",
143 "simd/filter_yuv_c.cc", 143 "simd/filter_yuv_c.cc",
144 "simd/yuv_to_rgb_table.cc",
145 "simd/yuv_to_rgb_table.h",
146 "sinc_resampler.cc", 144 "sinc_resampler.cc",
147 "sinc_resampler.h", 145 "sinc_resampler.h",
148 "stream_parser.cc", 146 "stream_parser.cc",
149 "stream_parser.h", 147 "stream_parser.h",
150 "stream_parser_buffer.cc", 148 "stream_parser_buffer.cc",
151 "stream_parser_buffer.h", 149 "stream_parser_buffer.h",
152 "text_cue.cc", 150 "text_cue.cc",
153 "text_cue.h", 151 "text_cue.h",
154 "text_ranges.cc", 152 "text_ranges.cc",
155 "text_ranges.h", 153 "text_ranges.h",
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 if (is_posix) { 466 if (is_posix) {
469 yasm_flags += [ "-DELF" ] 467 yasm_flags += [ "-DELF" ]
470 if (cpu_arch == "x64") { 468 if (cpu_arch == "x64") {
471 # TODO(ajwong): Why isn't this true in mac? 469 # TODO(ajwong): Why isn't this true in mac?
472 yasm_flags += [ "-DPIC" ] 470 yasm_flags += [ "-DPIC" ]
473 } 471 }
474 } 472 }
475 } 473 }
476 } 474 }
477 } 475 }
OLDNEW
« no previous file with comments | « content/browser/media/media_browsertest.cc ('k') | media/base/simd/convert_rgb_to_yuv_sse2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698