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

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 to public_deps 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') | third_party/libwebm/BUILD.gn » ('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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 "filters/source_buffer_platform.h", 444 "filters/source_buffer_platform.h",
445 ] 445 ]
446 } 446 }
447 447
448 public_deps += [ 448 public_deps += [
449 ":media_features", 449 ":media_features",
450 ":shared_memory_support", 450 ":shared_memory_support",
451 "//media/audio", 451 "//media/audio",
452 "//media/base", 452 "//media/base",
453 "//media/capture", 453 "//media/capture",
454 "//third_party/libwebm",
454 "//third_party/opus", 455 "//third_party/opus",
455 ] 456 ]
456 457
457 deps += [ 458 deps += [
458 "//base", 459 "//base",
459 "//base:i18n", 460 "//base:i18n",
460 "//base/third_party/dynamic_annotations", 461 "//base/third_party/dynamic_annotations",
461 "//crypto", 462 "//crypto",
462 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp via export_dependent_settings 463 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp via export_dependent_settings
463 "//gpu/command_buffer/client:gles2_interface", 464 "//gpu/command_buffer/client:gles2_interface",
464 "//gpu/command_buffer/common", 465 "//gpu/command_buffer/common",
465 "//skia", 466 "//skia",
466 "//third_party/libwebm", 467 "//third_party/libwebm",
xhwang 2016/04/28 22:59:33 Remove this? Actually, if you just need to expose
467 "//third_party/libyuv", 468 "//third_party/libyuv",
468 "//third_party/opus", 469 "//third_party/opus",
469 "//ui/events:events_base", 470 "//ui/events:events_base",
470 "//ui/gfx", 471 "//ui/gfx",
471 "//ui/gfx/geometry", 472 "//ui/gfx/geometry",
472 "//ui/gl:gl", 473 "//ui/gl:gl",
473 "//url", 474 "//url",
474 ] 475 ]
475 } 476 }
476 477
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 fuzzer_test("media_vp9_parser_fuzzer") { 835 fuzzer_test("media_vp9_parser_fuzzer") {
835 sources = [ 836 sources = [
836 "filters/vp9_parser_fuzzertest.cc", 837 "filters/vp9_parser_fuzzertest.cc",
837 ] 838 ]
838 deps = [ 839 deps = [
839 ":media", 840 ":media",
840 "//base", 841 "//base",
841 ] 842 ]
842 libfuzzer_options = [ "max_len = 400000" ] 843 libfuzzer_options = [ "max_len = 400000" ]
843 } 844 }
OLDNEW
« no previous file with comments | « DEPS ('k') | third_party/libwebm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698