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

Side by Side Diff: services/media/framework_ffmpeg/BUILD.gn

Issue 2069873003: Motown: Define MediaRenderer and make it the way we identify renderers. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Fix build break...audio_track_controller.* gone for good. Created 4 years, 6 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 | « services/media/framework/util/conversion_pipeline_builder.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #Copyright 2016 The Chromium Authors.All rights reserved. 1 #Copyright 2016 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/module_args/mojo.gni") 5 import("//build/module_args/mojo.gni")
6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni") 6 import("$mojo_sdk_root/mojo/public/mojo_sdk.gni")
7 7
8 config("default_include_dirs") { 8 config("default_include_dirs") {
9 include_dirs = [ 9 include_dirs = [
10 "//", 10 "//",
(...skipping 29 matching lines...) Expand all
40 "ffmpeg_formatting.h", 40 "ffmpeg_formatting.h",
41 "ffmpeg_init.cc", 41 "ffmpeg_init.cc",
42 "ffmpeg_init.h", 42 "ffmpeg_init.h",
43 "ffmpeg_video_decoder.cc", 43 "ffmpeg_video_decoder.cc",
44 "ffmpeg_video_decoder.h", 44 "ffmpeg_video_decoder.h",
45 ] 45 ]
46 46
47 deps = [ 47 deps = [
48 "//base", 48 "//base",
49 "//mojo/common", 49 "//mojo/common",
50 "//mojo/services/media/common/cpp",
50 "//services/media/framework", 51 "//services/media/framework",
51 "//services/util/cpp", 52 "//services/util/cpp",
52 "//third_party/ffmpeg", 53 "//third_party/ffmpeg",
53 ] 54 ]
54 55
55 defines = [ 56 defines = [
56 "FF_API_PIX_FMT_DESC=0", 57 "FF_API_PIX_FMT_DESC=0",
57 "FF_API_OLD_DECODE_AUDIO=0", 58 "FF_API_OLD_DECODE_AUDIO=0",
58 "FF_API_DESTRUCT_PACKET=0", 59 "FF_API_DESTRUCT_PACKET=0",
59 "FF_API_GET_BUFFER=0", 60 "FF_API_GET_BUFFER=0",
60 ] 61 ]
61 62
62 configs -= [ "//build/config/compiler:default_include_dirs" ] 63 configs -= [ "//build/config/compiler:default_include_dirs" ]
63 configs += [ ":default_include_dirs" ] 64 configs += [ ":default_include_dirs" ]
64 } 65 }
OLDNEW
« no previous file with comments | « services/media/framework/util/conversion_pipeline_builder.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698