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