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

Side by Side Diff: media/BUILD.gn

Issue 1345013002: Add is_chromecast to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Rebase + ui changes. Created 5 years, 3 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/shell/BUILD.gn ('k') | media/media_options.gni » ('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/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 "filters/gpu_video_decoder.cc", 200 "filters/gpu_video_decoder.cc",
201 "filters/gpu_video_decoder.h", 201 "filters/gpu_video_decoder.h",
202 "filters/h264_bit_reader.cc", 202 "filters/h264_bit_reader.cc",
203 "filters/h264_bit_reader.h", 203 "filters/h264_bit_reader.h",
204 "filters/h264_parser.cc", 204 "filters/h264_parser.cc",
205 "filters/h264_parser.h", 205 "filters/h264_parser.h",
206 "filters/ivf_parser.cc", 206 "filters/ivf_parser.cc",
207 "filters/ivf_parser.h", 207 "filters/ivf_parser.h",
208 "filters/jpeg_parser.cc", 208 "filters/jpeg_parser.cc",
209 "filters/jpeg_parser.h", 209 "filters/jpeg_parser.h",
210 "filters/source_buffer_platform.cc",
211 "filters/source_buffer_platform.h",
212 "filters/source_buffer_range.cc", 210 "filters/source_buffer_range.cc",
213 "filters/source_buffer_range.h", 211 "filters/source_buffer_range.h",
214 "filters/source_buffer_stream.cc", 212 "filters/source_buffer_stream.cc",
215 "filters/source_buffer_stream.h", 213 "filters/source_buffer_stream.h",
216 "filters/stream_parser_factory.cc", 214 "filters/stream_parser_factory.cc",
217 "filters/stream_parser_factory.h", 215 "filters/stream_parser_factory.h",
218 "filters/video_cadence_estimator.cc", 216 "filters/video_cadence_estimator.cc",
219 "filters/video_cadence_estimator.h", 217 "filters/video_cadence_estimator.h",
220 "filters/video_renderer_algorithm.cc", 218 "filters/video_renderer_algorithm.cc",
221 "filters/video_renderer_algorithm.h", 219 "filters/video_renderer_algorithm.h",
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 "formats/mpeg/adts_constants.h", 496 "formats/mpeg/adts_constants.h",
499 "formats/mpeg/adts_stream_parser.cc", 497 "formats/mpeg/adts_stream_parser.cc",
500 "formats/mpeg/adts_stream_parser.h", 498 "formats/mpeg/adts_stream_parser.h",
501 "formats/mpeg/mpeg1_audio_stream_parser.cc", 499 "formats/mpeg/mpeg1_audio_stream_parser.cc",
502 "formats/mpeg/mpeg1_audio_stream_parser.h", 500 "formats/mpeg/mpeg1_audio_stream_parser.h",
503 "formats/mpeg/mpeg_audio_stream_parser_base.cc", 501 "formats/mpeg/mpeg_audio_stream_parser_base.cc",
504 "formats/mpeg/mpeg_audio_stream_parser_base.h", 502 "formats/mpeg/mpeg_audio_stream_parser_base.h",
505 ] 503 ]
506 } 504 }
507 505
506 if (use_low_memory_buffer) {
507 sources += [
508 "filters/source_buffer_platform.h",
509 "filters/source_buffer_platform_lowmem.cc",
510 ]
511 } else {
512 sources += [
513 "filters/source_buffer_platform.cc",
514 "filters/source_buffer_platform.h",
515 ]
516 }
517
508 public_deps = [ 518 public_deps = [
509 "//media/base", 519 "//media/base",
510 "//media/audio", 520 "//media/audio",
511 ] 521 ]
512 522
513 deps += [ 523 deps += [
514 ":shared_memory_support", 524 ":shared_memory_support",
515 "//base", 525 "//base",
516 "//base:i18n", 526 "//base:i18n",
517 "//base/third_party/dynamic_annotations", 527 "//base/third_party/dynamic_annotations",
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 "//media/base:test_support", 841 "//media/base:test_support",
832 "//media/test:pipeline_integration_tests", 842 "//media/test:pipeline_integration_tests",
833 "//testing/gmock", 843 "//testing/gmock",
834 "//testing/gtest", 844 "//testing/gtest",
835 "//third_party/ffmpeg", 845 "//third_party/ffmpeg",
836 "//ui/gfx/geometry", 846 "//ui/gfx/geometry",
837 "//ui/gfx:test_support", 847 "//ui/gfx:test_support",
838 ] 848 ]
839 } 849 }
840 } 850 }
OLDNEW
« no previous file with comments | « content/shell/BUILD.gn ('k') | media/media_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698