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

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

Issue 418143005: media: Introduce Renderer interface and RendererImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: minor cleanup Created 6 years, 4 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 | Annotate | Revision Log
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 "media_switches.h", 92 "media_switches.h",
93 "multi_channel_resampler.cc", 93 "multi_channel_resampler.cc",
94 "multi_channel_resampler.h", 94 "multi_channel_resampler.h",
95 "pipeline.cc", 95 "pipeline.cc",
96 "pipeline.h", 96 "pipeline.h",
97 "pipeline_status.h", 97 "pipeline_status.h",
98 "player_tracker.cc", 98 "player_tracker.cc",
99 "player_tracker.h", 99 "player_tracker.h",
100 "ranges.cc", 100 "ranges.cc",
101 "ranges.h", 101 "ranges.h",
102 "renderer.cc",
103 "renderer.h",
102 "sample_format.cc", 104 "sample_format.cc",
103 "sample_format.h", 105 "sample_format.h",
104 "scoped_histogram_timer.h", 106 "scoped_histogram_timer.h",
105 "seekable_buffer.cc", 107 "seekable_buffer.cc",
106 "seekable_buffer.h", 108 "seekable_buffer.h",
107 "serial_runner.cc", 109 "serial_runner.cc",
108 "serial_runner.h", 110 "serial_runner.h",
109 "simd/convert_rgb_to_yuv.h", 111 "simd/convert_rgb_to_yuv.h",
110 "simd/convert_rgb_to_yuv_c.cc", 112 "simd/convert_rgb_to_yuv_c.cc",
111 "simd/convert_yuv_to_rgb.h", 113 "simd/convert_yuv_to_rgb.h",
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 if (is_posix) { 423 if (is_posix) {
422 yasm_flags += [ "-DELF" ] 424 yasm_flags += [ "-DELF" ]
423 if (cpu_arch == "x64") { 425 if (cpu_arch == "x64") {
424 # TODO(ajwong): Why isn't this true in mac? 426 # TODO(ajwong): Why isn't this true in mac?
425 yasm_flags += [ "-DPIC" ] 427 yasm_flags += [ "-DPIC" ]
426 } 428 }
427 } 429 }
428 } 430 }
429 } 431 }
430 } 432 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698