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

Side by Side Diff: content/utility/BUILD.gn

Issue 1649933002: [Chromecast] Hook up mojo media pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 10 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
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("//content/utility/utility.gni") 5 import("//content/utility/utility.gni")
6 import("//media/media_options.gni") 6 import("//media/media_options.gni")
7 7
8 source_set("utility") { 8 source_set("utility") {
9 # Only the public target should depend on this. All other targets (even 9 # Only the public target should depend on this. All other targets (even
10 # internal content ones) should depend on the public one. 10 # internal content ones) should depend on the public one.
(...skipping 12 matching lines...) Expand all
23 "//content/public/common:mojo_bindings", 23 "//content/public/common:mojo_bindings",
24 "//courgette:courgette_lib", 24 "//courgette:courgette_lib",
25 "//mojo/common", 25 "//mojo/common",
26 "//mojo/public/cpp/bindings", 26 "//mojo/public/cpp/bindings",
27 "//mojo/shell", 27 "//mojo/shell",
28 "//mojo/shell/public/cpp:cpp_for_chromium", 28 "//mojo/shell/public/cpp:cpp_for_chromium",
29 "//mojo/shell/public/interfaces", 29 "//mojo/shell/public/interfaces",
30 "//third_party/WebKit/public:blink_headers", 30 "//third_party/WebKit/public:blink_headers",
31 "//url", 31 "//url",
32 ] 32 ]
33
34 if (enable_mojo_media == "utility") {
35 deps += [ "//media/mojo/services:application" ]
36 }
xhwang 2016/02/02 00:12:27 ditto
alokp 2016/02/02 00:40:44 ditto
37 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698