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

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: add libwebm_config to media/BUILD.gn all_dependent_configs and remove libwebm from public_deps 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 222
223 configs += [ 223 configs += [
224 ":media_config", 224 ":media_config",
225 ":media_implementation", 225 ":media_implementation",
226 "//build/config:precompiled_headers", 226 "//build/config:precompiled_headers",
227 227
228 # TODO(wolenetz): Fix size_t to int trunctaion in win64. 228 # TODO(wolenetz): Fix size_t to int trunctaion in win64.
229 # See http://crbug.com/171009 229 # See http://crbug.com/171009
230 "//build/config/compiler:no_size_t_to_int_warning", 230 "//build/config/compiler:no_size_t_to_int_warning",
231 ] 231 ]
232 all_dependent_configs = [ ":media_dependent_config" ] 232 all_dependent_configs = [
233 ":media_dependent_config",
234 "//third_party/libwebm:libwebm_config",
xhwang 2016/04/28 23:28:41 Sorry, we have so many bad examples in this file f
235 ]
233 236
234 allow_circular_includes_from = [] 237 allow_circular_includes_from = []
235 cflags = [] 238 cflags = []
236 libs = [] 239 libs = []
237 defines = [] 240 defines = []
238 deps = [ 241 deps = [
239 ":cdm_api", 242 ":cdm_api",
240 ] 243 ]
241 public_deps = [] 244 public_deps = []
242 245
(...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 fuzzer_test("media_vp9_parser_fuzzer") { 837 fuzzer_test("media_vp9_parser_fuzzer") {
835 sources = [ 838 sources = [
836 "filters/vp9_parser_fuzzertest.cc", 839 "filters/vp9_parser_fuzzertest.cc",
837 ] 840 ]
838 deps = [ 841 deps = [
839 ":media", 842 ":media",
840 "//base", 843 "//base",
841 ] 844 ]
842 libfuzzer_options = [ "max_len = 400000" ] 845 libfuzzer_options = [ "max_len = 400000" ]
843 } 846 }
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