| 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 source_set("gpu") { | 8 source_set("gpu") { |
| 9 # TODO(brettw) it seems like this should be only visible to content like | 9 # TODO(brettw) it seems like this should be only visible to content like |
| 10 # the other non-public content directories are. But this is depended on by | 10 # the other non-public content directories are. But this is depended on by |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 "//third_party/wtl:wtl_includes", | 38 "//third_party/wtl:wtl_includes", |
| 39 ] | 39 ] |
| 40 libs = [ "setupapi.lib" ] | 40 libs = [ "setupapi.lib" ] |
| 41 deps += [ | 41 deps += [ |
| 42 "//third_party/angle:libEGL", | 42 "//third_party/angle:libEGL", |
| 43 "//third_party/angle:libGLESv2", | 43 "//third_party/angle:libGLESv2", |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 if (is_chromeos && cpu_arch != "arm") { | 47 if (is_chromeos && cpu_arch != "arm") { |
| 48 configs += [ "//third_party/libva/libva_config" ] | 48 configs += [ "//third_party/libva:libva_config" ] |
| 49 } | 49 } |
| 50 | 50 |
| 51 if (use_x11) { | 51 if (use_x11) { |
| 52 deps += [ "//ui/events/platform/x11" ] | 52 deps += [ "//ui/events/platform/x11" ] |
| 53 } | 53 } |
| 54 } | 54 } |
| OLD | NEW |