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 20 matching lines...) Expand all Loading... |
31 "gpu_process.cc", | 31 "gpu_process.cc", |
32 "gpu_process.h", | 32 "gpu_process.h", |
33 "gpu_process_control_impl.cc", | 33 "gpu_process_control_impl.cc", |
34 "gpu_process_control_impl.h", | 34 "gpu_process_control_impl.h", |
35 "gpu_watchdog_thread.cc", | 35 "gpu_watchdog_thread.cc", |
36 "gpu_watchdog_thread.h", | 36 "gpu_watchdog_thread.h", |
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 += [ |
| 42 "//content:content_implementation", |
| 43 "//content/public/common:mojo_shell_client", |
| 44 ] |
42 | 45 |
43 deps = [ | 46 deps = [ |
44 "//base", | 47 "//base", |
45 "//content:export", | 48 "//content:export", |
46 "//content/public/child:child_sources", | 49 "//content/public/child:child_sources", |
47 "//mojo/application/public/interfaces", | 50 "//mojo/application/public/interfaces", |
48 "//skia", | 51 "//skia", |
49 "//ui/gl", | 52 "//ui/gl", |
50 ] | 53 ] |
51 | 54 |
(...skipping 14 matching lines...) Expand all Loading... |
66 } | 69 } |
67 | 70 |
68 if (is_chromeos && current_cpu != "arm") { | 71 if (is_chromeos && current_cpu != "arm") { |
69 configs += [ "//third_party/libva:libva_config" ] | 72 configs += [ "//third_party/libva:libva_config" ] |
70 } | 73 } |
71 | 74 |
72 if (use_x11) { | 75 if (use_x11) { |
73 deps += [ "//ui/events/platform/x11" ] | 76 deps += [ "//ui/events/platform/x11" ] |
74 } | 77 } |
75 } | 78 } |
OLD | NEW |