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

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

Issue 2517953003: Move enable_webrtc to a buildflag header. (Closed)
Patch Set: Fix Created 4 years, 1 month 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 | « media/BUILD.gn ('k') | media/gpu/ipc/service/gpu_video_encode_accelerator.cc » ('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 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 if (is_component_build) { 5 if (is_component_build) {
6 link_target_type = "source_set" 6 link_target_type = "source_set"
7 } else { 7 } else {
8 link_target_type = "static_library" 8 link_target_type = "static_library"
9 } 9 }
10 target(link_target_type, "service") { 10 target(link_target_type, "service") {
(...skipping 21 matching lines...) Expand all
32 32
33 public_deps = [ 33 public_deps = [
34 "//base", 34 "//base",
35 "//gpu/config", 35 "//gpu/config",
36 "//ipc", 36 "//ipc",
37 "//media", 37 "//media",
38 "//media/gpu", 38 "//media/gpu",
39 ] 39 ]
40 deps = [ 40 deps = [
41 "//gpu/ipc/service", 41 "//gpu/ipc/service",
42 "//media:media_features",
42 "//media/gpu/ipc/common", 43 "//media/gpu/ipc/common",
43 "//third_party/mesa:mesa_headers", 44 "//third_party/mesa:mesa_headers",
44 "//ui/gfx/ipc/color", 45 "//ui/gfx/ipc/color",
45 ] 46 ]
46 47
47 configs += [ "//media/gpu:gpu_config" ] 48 configs += [ "//media/gpu:gpu_config" ]
48 49
49 if (is_chromeos && current_cpu != "arm") { 50 if (is_chromeos && current_cpu != "arm") {
50 configs += [ "//third_party/libva:libva_config" ] 51 configs += [ "//third_party/libva:libva_config" ]
51 } 52 }
52 53
53 if (is_win) { 54 if (is_win) {
54 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 55 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
55 } 56 }
56 57
57 if (is_mac) { 58 if (is_mac) {
58 deps += [ "//third_party/webrtc/common_video:common_video" ] 59 deps += [ "//third_party/webrtc/common_video:common_video" ]
59 } 60 }
60 } 61 }
OLDNEW
« no previous file with comments | « media/BUILD.gn ('k') | media/gpu/ipc/service/gpu_video_encode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698