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

Side by Side Diff: media/BUILD.gn

Issue 1929873004: Roll libwebm 75a6d2d:9a235e0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move libwebm_config public_configs entry to media component of media/BUILD.gn 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 | « DEPS ('k') | media/media.gyp » ('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/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")
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 ] 231 ]
232 all_dependent_configs = [ ":media_dependent_config" ] 232 all_dependent_configs = [ ":media_dependent_config" ]
233 233
234 allow_circular_includes_from = [] 234 allow_circular_includes_from = []
235 cflags = [] 235 cflags = []
236 libs = [] 236 libs = []
237 defines = [] 237 defines = []
238 deps = [ 238 deps = [
239 ":cdm_api", 239 ":cdm_api",
240 ] 240 ]
241
242 public_configs = [ "//third_party/libwebm:libwebm_config" ]
241 public_deps = [] 243 public_deps = []
242 244
243 include_dirs = [ "." ] 245 include_dirs = [ "." ]
244 if (media_use_ffmpeg) { 246 if (media_use_ffmpeg) {
245 deps += [ "//third_party/ffmpeg" ] 247 deps += [ "//third_party/ffmpeg" ]
246 sources += [ 248 sources += [
247 "ffmpeg/ffmpeg_common.cc", 249 "ffmpeg/ffmpeg_common.cc",
248 "ffmpeg/ffmpeg_common.h", 250 "ffmpeg/ffmpeg_common.h",
249 "filters/audio_file_reader.cc", 251 "filters/audio_file_reader.cc",
250 "filters/audio_file_reader.h", 252 "filters/audio_file_reader.h",
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 fuzzer_test("media_vp9_parser_fuzzer") { 836 fuzzer_test("media_vp9_parser_fuzzer") {
835 sources = [ 837 sources = [
836 "filters/vp9_parser_fuzzertest.cc", 838 "filters/vp9_parser_fuzzertest.cc",
837 ] 839 ]
838 deps = [ 840 deps = [
839 ":media", 841 ":media",
840 "//base", 842 "//base",
841 ] 843 ]
842 libfuzzer_options = [ "max_len = 400000" ] 844 libfuzzer_options = [ "max_len = 400000" ]
843 } 845 }
OLDNEW
« no previous file with comments | « DEPS ('k') | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698