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

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: Add README and update build option Created 4 years, 3 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') | 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 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 } 472 }
473 473
474 if (use_udev) { 474 if (use_udev) {
475 deps += [ "//device/udev_linux" ] 475 deps += [ "//device/udev_linux" ]
476 sources += [ 476 sources += [
477 "device_monitors/device_monitor_udev.cc", 477 "device_monitors/device_monitor_udev.cc",
478 "device_monitors/device_monitor_udev.h", 478 "device_monitors/device_monitor_udev.h",
479 ] 479 ]
480 } 480 }
481 481
482 if (enable_media_remoting) {
483 deps += [ "//media/remoting:rpc" ]
xhwang 2016/09/22 23:55:19 hmm, why should media depend on media/remoting? I
erickung1 2016/09/24 00:05:59 Yes, after the discussion, I removed all the chang
484 }
485
482 public_deps += [ 486 public_deps += [
483 ":media_features", 487 ":media_features",
484 ":shared_memory_support", 488 ":shared_memory_support",
485 "//media/audio", 489 "//media/audio",
486 "//media/base", 490 "//media/base",
487 "//third_party/opus", 491 "//third_party/opus",
488 ] 492 ]
489 493
490 deps += [ 494 deps += [
491 "//base", 495 "//base",
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 fuzzer_test("media_webm_muxer_fuzzer") { 904 fuzzer_test("media_webm_muxer_fuzzer") {
901 sources = [ 905 sources = [
902 "muxers/webm_muxer_fuzzertest.cc", 906 "muxers/webm_muxer_fuzzertest.cc",
903 ] 907 ]
904 deps = [ 908 deps = [
905 ":media", 909 ":media",
906 "//base", 910 "//base",
907 "//third_party/libwebm", 911 "//third_party/libwebm",
908 ] 912 ]
909 } 913 }
OLDNEW
« no previous file with comments | « no previous file | media/media_options.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698