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

Side by Side Diff: media/media_options.gni

Issue 799543005: Add use_v4l2_codec use flag to include v4l2 codec on x86 CrOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move use_v4l2_codec to media_option Created 5 years, 11 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
« content/common/BUILD.gn ('K') | « content/content_common.gypi ('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 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 declare_args() { 5 declare_args() {
6 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of 6 # Allows distributions to link pulseaudio directly (DT_NEEDED) instead of
7 # using dlopen. This helps with automated detection of ABI mismatches and 7 # using dlopen. This helps with automated detection of ABI mismatches and
8 # prevents silent errors. 8 # prevents silent errors.
9 link_pulseaudio = false 9 link_pulseaudio = false
10 10
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 # Enables the MPEG2-TS stream parser for use with Media Source. Disabled by 44 # Enables the MPEG2-TS stream parser for use with Media Source. Disabled by
45 # default since it's not available on the normal Web Platform and costs money. 45 # default since it's not available on the normal Web Platform and costs money.
46 enable_mpeg2ts_stream_parser = false 46 enable_mpeg2ts_stream_parser = false
47 47
48 # Enables browser side Content Decryption Modules. Required for android where 48 # Enables browser side Content Decryption Modules. Required for android where
49 # the typical PPAPI based CDM is not available. 49 # the typical PPAPI based CDM is not available.
50 enable_browser_cdms = is_android 50 enable_browser_cdms = is_android
51 51
52 # TODO(GYP): This should be a platform define. 52 # TODO(GYP): This should be a platform define.
53 is_openbsd = false 53 is_openbsd = false
54
wuchengli 2015/01/08 11:16:46 Add a TODO to remove this after the linux header o
henryhsu 2015/01/08 12:11:19 Done.
55 # Indicates if Video4Linux2 codec is used. This is used for x86 CrOS
56 # platform which has v4l2 hardware encoder / decoder.
57 use_v4l2_codec = false
wuchengli 2015/01/08 11:16:46 Shouldn't this go to content/common/common.gni? No
henryhsu 2015/01/08 12:11:19 Done.
54 } 58 }
OLDNEW
« content/common/BUILD.gn ('K') | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698