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

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

Issue 783003002: Introduce media::RendererFactory interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comments addressed Created 6 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
« no previous file with comments | « media/BUILD.gn ('k') | media/base/renderer_factory.h » ('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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "multi_channel_resampler.h", 113 "multi_channel_resampler.h",
114 "pipeline.cc", 114 "pipeline.cc",
115 "pipeline.h", 115 "pipeline.h",
116 "pipeline_status.h", 116 "pipeline_status.h",
117 "player_tracker.cc", 117 "player_tracker.cc",
118 "player_tracker.h", 118 "player_tracker.h",
119 "ranges.cc", 119 "ranges.cc",
120 "ranges.h", 120 "ranges.h",
121 "renderer.cc", 121 "renderer.cc",
122 "renderer.h", 122 "renderer.h",
123 "renderer_factory.cc",
124 "renderer_factory.h",
123 "sample_format.cc", 125 "sample_format.cc",
124 "sample_format.h", 126 "sample_format.h",
125 "scoped_histogram_timer.h", 127 "scoped_histogram_timer.h",
126 "seekable_buffer.cc", 128 "seekable_buffer.cc",
127 "seekable_buffer.h", 129 "seekable_buffer.h",
128 "serial_runner.cc", 130 "serial_runner.cc",
129 "serial_runner.h", 131 "serial_runner.h",
130 "simd/convert_rgb_to_yuv.h", 132 "simd/convert_rgb_to_yuv.h",
131 "simd/convert_rgb_to_yuv_c.cc", 133 "simd/convert_rgb_to_yuv_c.cc",
132 "simd/convert_yuv_to_rgb.h", 134 "simd/convert_yuv_to_rgb.h",
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
459 if (is_posix) { 461 if (is_posix) {
460 yasm_flags += [ "-DELF" ] 462 yasm_flags += [ "-DELF" ]
461 if (cpu_arch == "x64") { 463 if (cpu_arch == "x64") {
462 # TODO(ajwong): Why isn't this true in mac? 464 # TODO(ajwong): Why isn't this true in mac?
463 yasm_flags += [ "-DPIC" ] 465 yasm_flags += [ "-DPIC" ]
464 } 466 }
465 } 467 }
466 } 468 }
467 } 469 }
468 } 470 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/base/renderer_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698