OLD | NEW |
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 26 matching lines...) Expand all Loading... |
37 "in_process_gpu_thread.cc", | 37 "in_process_gpu_thread.cc", |
38 "in_process_gpu_thread.h", | 38 "in_process_gpu_thread.h", |
39 ] | 39 ] |
40 | 40 |
41 configs += [ "//content:content_implementation" ] | 41 configs += [ "//content:content_implementation" ] |
42 | 42 |
43 deps = [ | 43 deps = [ |
44 "//base", | 44 "//base", |
45 "//content:export", | 45 "//content:export", |
46 "//content/public/child:child_sources", | 46 "//content/public/child:child_sources", |
47 "//gpu/ipc/common:ipc_common_sources", | |
48 "//mojo/shell/public/interfaces", | 47 "//mojo/shell/public/interfaces", |
49 "//skia", | 48 "//skia", |
50 "//ui/gl", | 49 "//ui/gl", |
51 ] | 50 ] |
52 | 51 |
53 public_deps = [ | 52 public_deps = [ |
54 "//content/common:mojo_bindings", | 53 "//content/common:mojo_bindings", |
55 ] | 54 ] |
56 | 55 |
57 if (mojo_media_host == "gpu") { | 56 if (mojo_media_host == "gpu") { |
(...skipping 13 matching lines...) Expand all Loading... |
71 } | 70 } |
72 | 71 |
73 if (is_chromeos && current_cpu != "arm") { | 72 if (is_chromeos && current_cpu != "arm") { |
74 configs += [ "//third_party/libva:libva_config" ] | 73 configs += [ "//third_party/libva:libva_config" ] |
75 } | 74 } |
76 | 75 |
77 if (use_x11) { | 76 if (use_x11) { |
78 deps += [ "//ui/events/platform/x11" ] | 77 deps += [ "//ui/events/platform/x11" ] |
79 } | 78 } |
80 } | 79 } |
OLD | NEW |