| 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 | 7 |
| 8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
| 9 group("gpu") { | 9 group("gpu") { |
| 10 visibility = [ "//content/*" ] | 10 visibility = [ "//content/*" ] |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 source_set("gpu_sources") { | 23 source_set("gpu_sources") { |
| 24 visibility = [ "//content/*" ] | 24 visibility = [ "//content/*" ] |
| 25 | 25 |
| 26 sources = [ | 26 sources = [ |
| 27 "gpu_child_thread.cc", | 27 "gpu_child_thread.cc", |
| 28 "gpu_child_thread.h", | 28 "gpu_child_thread.h", |
| 29 "gpu_main.cc", | 29 "gpu_main.cc", |
| 30 "gpu_process.cc", | 30 "gpu_process.cc", |
| 31 "gpu_process.h", | 31 "gpu_process.h", |
| 32 "gpu_process_control_impl.cc", |
| 33 "gpu_process_control_impl.h", |
| 32 "gpu_watchdog_thread.cc", | 34 "gpu_watchdog_thread.cc", |
| 33 "gpu_watchdog_thread.h", | 35 "gpu_watchdog_thread.h", |
| 34 "in_process_gpu_thread.cc", | 36 "in_process_gpu_thread.cc", |
| 35 "in_process_gpu_thread.h", | 37 "in_process_gpu_thread.h", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 configs += [ "//content:content_implementation" ] | 40 configs += [ "//content:content_implementation" ] |
| 39 | 41 |
| 40 deps = [ | 42 deps = [ |
| 41 "//base", | 43 "//base", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 59 } | 61 } |
| 60 | 62 |
| 61 if (is_chromeos && current_cpu != "arm") { | 63 if (is_chromeos && current_cpu != "arm") { |
| 62 configs += [ "//third_party/libva:libva_config" ] | 64 configs += [ "//third_party/libva:libva_config" ] |
| 63 } | 65 } |
| 64 | 66 |
| 65 if (use_x11) { | 67 if (use_x11) { |
| 66 deps += [ "//ui/events/platform/x11" ] | 68 deps += [ "//ui/events/platform/x11" ] |
| 67 } | 69 } |
| 68 } | 70 } |
| OLD | NEW |