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

Side by Side Diff: media/BUILD.gn

Issue 1998333002: MP4 support for Common Encryption 'cbcs' scheme. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix a problem in hasty change before upload Created 4 years, 7 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 | « no previous file | media/formats/mp4/box_definitions.h » ('j') | media/formats/mp4/box_definitions.h » ('J')
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
11 import("//media/media_options.gni") 11 import("//media/media_options.gni")
12 import("//testing/libfuzzer/fuzzer_test.gni") 12 import("//testing/libfuzzer/fuzzer_test.gni")
13 import("//testing/test.gni") 13 import("//testing/test.gni")
14 14
15 buildflag_header("media_features") { 15 buildflag_header("media_features") {
16 header = "media_features.h" 16 header = "media_features.h"
17 17
18 flags = [ 18 flags = [
19 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing", 19 "ENABLE_AC3_EAC3_AUDIO_DEMUXING=$enable_ac3_eac3_audio_demuxing",
20 "ENABLE_CENC_NEW_EDITIONS=$enable_cenc_new_editions",
20 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing", 21 "ENABLE_HEVC_DEMUXING=$enable_hevc_demuxing",
21 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser", 22 "ENABLE_MSE_MPEG2TS_STREAM_PARSER=$enable_mse_mpeg2ts_stream_parser",
22 "ENABLE_MP4_VP9_DEMUXING=0", 23 "ENABLE_MP4_VP9_DEMUXING=0",
23 ] 24 ]
24 } 25 }
25 26
26 # Common configuration for targets in the media directory. 27 # Common configuration for targets in the media directory.
27 # NOT for exporting. 28 # NOT for exporting.
28 config("media_config") { 29 config("media_config") {
29 defines = [] 30 defines = []
(...skipping 806 matching lines...) Expand 10 before | Expand all | Expand 10 after
836 fuzzer_test("media_vp9_parser_fuzzer") { 837 fuzzer_test("media_vp9_parser_fuzzer") {
837 sources = [ 838 sources = [
838 "filters/vp9_parser_fuzzertest.cc", 839 "filters/vp9_parser_fuzzertest.cc",
839 ] 840 ]
840 deps = [ 841 deps = [
841 ":media", 842 ":media",
842 "//base", 843 "//base",
843 ] 844 ]
844 libfuzzer_options = [ "max_len = 400000" ] 845 libfuzzer_options = [ "max_len = 400000" ]
845 } 846 }
OLDNEW
« no previous file with comments | « no previous file | media/formats/mp4/box_definitions.h » ('j') | media/formats/mp4/box_definitions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698