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

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

Issue 1655083002: Enable SurfaceView fullscreen video on Android with WebMediaPlayerImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@avda-sv
Patch Set: cleaned up Created 4 years, 10 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "simd/convert_yuv_to_rgb.h", 158 "simd/convert_yuv_to_rgb.h",
159 "simd/convert_yuv_to_rgb_c.cc", 159 "simd/convert_yuv_to_rgb_c.cc",
160 "simd/filter_yuv.h", 160 "simd/filter_yuv.h",
161 "simd/filter_yuv_c.cc", 161 "simd/filter_yuv_c.cc",
162 "sinc_resampler.cc", 162 "sinc_resampler.cc",
163 "sinc_resampler.h", 163 "sinc_resampler.h",
164 "stream_parser.cc", 164 "stream_parser.cc",
165 "stream_parser.h", 165 "stream_parser.h",
166 "stream_parser_buffer.cc", 166 "stream_parser_buffer.cc",
167 "stream_parser_buffer.h", 167 "stream_parser_buffer.h",
168 "surface_manager.h",
168 "text_cue.cc", 169 "text_cue.cc",
169 "text_cue.h", 170 "text_cue.h",
170 "text_ranges.cc", 171 "text_ranges.cc",
171 "text_ranges.h", 172 "text_ranges.h",
172 "text_renderer.cc", 173 "text_renderer.cc",
173 "text_renderer.h", 174 "text_renderer.h",
174 "text_track.h", 175 "text_track.h",
175 "text_track_config.cc", 176 "text_track_config.cc",
176 "text_track_config.h", 177 "text_track_config.h",
177 "time_delta_interpolator.cc", 178 "time_delta_interpolator.cc",
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
537 if (is_posix) { 538 if (is_posix) {
538 yasm_flags += [ "-DELF" ] 539 yasm_flags += [ "-DELF" ]
539 if (current_cpu == "x64") { 540 if (current_cpu == "x64") {
540 # TODO(ajwong): Why isn't this true in mac? 541 # TODO(ajwong): Why isn't this true in mac?
541 yasm_flags += [ "-DPIC" ] 542 yasm_flags += [ "-DPIC" ]
542 } 543 }
543 } 544 }
544 } 545 }
545 } 546 }
546 } 547 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698