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

Side by Side Diff: media/gpu/ipc/service/BUILD.gn

Issue 2146463002: Fix V4L2VideoEncodeAccelerator is not enabled in GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("service") { 5 source_set("service") {
6 visibility = [ 6 visibility = [
7 "//media/*", 7 "//media/*",
8 "//content/gpu/*", 8 "//content/gpu/*",
9 "//content/public/gpu/*", 9 "//content/public/gpu/*",
10 "//services/ui/gpu/*", 10 "//services/ui/gpu/*",
(...skipping 20 matching lines...) Expand all
31 "//ipc", 31 "//ipc",
32 "//media", 32 "//media",
33 "//media/gpu", 33 "//media/gpu",
34 ] 34 ]
35 deps = [ 35 deps = [
36 "//gpu/ipc/service", 36 "//gpu/ipc/service",
37 "//media/gpu/ipc/common", 37 "//media/gpu/ipc/common",
38 "//third_party/mesa:mesa_headers", 38 "//third_party/mesa:mesa_headers",
39 ] 39 ]
40 40
41 public_configs = [ "//media/gpu:gpu_config" ]
wuchengli 2016/07/12 11:39:51 s/public_configs/configs/. We don't need to propag
wuchengli 2016/07/12 15:00:55 I found why media/gpu/ipc/client/BUILD.gn used pub
henryhsu 2016/07/13 03:29:59 Done.
42
41 if (is_chromeos && current_cpu != "arm") { 43 if (is_chromeos && current_cpu != "arm") {
42 configs += [ "//third_party/libva:libva_config" ] 44 configs += [ "//third_party/libva:libva_config" ]
43 } 45 }
44 46
45 if (is_win) { 47 if (is_win) {
46 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 48 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
47 } 49 }
48 50
49 if (is_mac) { 51 if (is_mac) {
50 deps += [ "//third_party/webrtc/common_video:common_video" ] 52 deps += [ "//third_party/webrtc/common_video:common_video" ]
51 } 53 }
52 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698