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

Side by Side Diff: media/BUILD.gn

Issue 2261503002: Define remote playback proto buffer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/media_options.gni » ('j') | media/media_options.gni » ('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")
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 } 465 }
466 466
467 if (use_udev) { 467 if (use_udev) {
468 deps += [ "//device/udev_linux" ] 468 deps += [ "//device/udev_linux" ]
469 sources += [ 469 sources += [
470 "device_monitors/device_monitor_udev.cc", 470 "device_monitors/device_monitor_udev.cc",
471 "device_monitors/device_monitor_udev.h", 471 "device_monitors/device_monitor_udev.h",
472 ] 472 ]
473 } 473 }
474 474
475 if (media_remoting) {
476 deps += [ "//media/remoting:rpc" ]
xhwang 2016/08/25 20:00:15 OOC, why media needs to depend on this?
erickung1 2016/09/01 09:05:05 once we checked in the remote renderer and remote
477 }
478
475 public_deps += [ 479 public_deps += [
476 ":media_features", 480 ":media_features",
477 ":shared_memory_support", 481 ":shared_memory_support",
478 "//media/audio", 482 "//media/audio",
479 "//media/base", 483 "//media/base",
480 "//third_party/opus", 484 "//third_party/opus",
481 ] 485 ]
482 486
483 deps += [ 487 deps += [
484 "//base", 488 "//base",
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
877 sources = [ 881 sources = [
878 "filters/vpx_video_decoder_fuzzertest.cc", 882 "filters/vpx_video_decoder_fuzzertest.cc",
879 ] 883 ]
880 deps = [ 884 deps = [
881 ":media", 885 ":media",
882 "//base", 886 "//base",
883 ] 887 ]
884 libfuzzer_options = [ "max_len = 400000" ] 888 libfuzzer_options = [ "max_len = 400000" ]
885 seed_corpus = "//media/test/data" 889 seed_corpus = "//media/test/data"
886 } 890 }
OLDNEW
« no previous file with comments | « no previous file | media/media_options.gni » ('j') | media/media_options.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698