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

Side by Side Diff: content/gpu/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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//content/content.gni") 6 import("//content/content.gni")
7 import("//media/media_options.gni") 7 import("//media/media_options.gni")
8 8
9 # See //content/BUILD.gn for how this works. 9 # See //content/BUILD.gn for how this works.
10 group("gpu") { 10 group("gpu") {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 "//content/public/child:child_sources", 46 "//content/public/child:child_sources",
47 "//mojo/shell/public/interfaces", 47 "//mojo/shell/public/interfaces",
48 "//skia", 48 "//skia",
49 "//ui/gl", 49 "//ui/gl",
50 ] 50 ]
51 51
52 public_deps = [ 52 public_deps = [
53 "//content/common:mojo_bindings", 53 "//content/common:mojo_bindings",
54 ] 54 ]
55 55
56 if (enable_mojo_media == "gpu") {
57 deps += [ "//media/mojo/services:application" ]
58 }
xhwang 2016/02/02 00:12:27 Why are you making this change? Wondering how will
alokp 2016/02/02 00:40:44 Please see my comment against content/browser/BUIL
59
60 if (is_win) { 56 if (is_win) {
61 configs += [ 57 configs += [
62 "//third_party/khronos:khronos_headers", 58 "//third_party/khronos:khronos_headers",
63 "//third_party/wtl:wtl_includes", 59 "//third_party/wtl:wtl_includes",
64 ] 60 ]
65 libs = [ "setupapi.lib" ] 61 libs = [ "setupapi.lib" ]
66 deps += [ 62 deps += [
67 "//third_party/angle:libEGL", 63 "//third_party/angle:libEGL",
68 "//third_party/angle:libGLESv2", 64 "//third_party/angle:libGLESv2",
69 ] 65 ]
70 } 66 }
71 67
72 if (is_chromeos && current_cpu != "arm") { 68 if (is_chromeos && current_cpu != "arm") {
73 configs += [ "//third_party/libva:libva_config" ] 69 configs += [ "//third_party/libva:libva_config" ]
74 } 70 }
75 71
76 if (use_x11) { 72 if (use_x11) {
77 deps += [ "//ui/events/platform/x11" ] 73 deps += [ "//ui/events/platform/x11" ]
78 } 74 }
79 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698