| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 if (is_mac) { | 7 if (is_mac) { |
| 8 import("//build/config/mac/mac_sdk.gni") | 8 import("//build/config/mac/mac_sdk.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 "pass_through_image_transport_surface.cc", | 54 "pass_through_image_transport_surface.cc", |
| 55 "pass_through_image_transport_surface.h", | 55 "pass_through_image_transport_surface.h", |
| 56 "switches.cc", | 56 "switches.cc", |
| 57 "switches.h", | 57 "switches.h", |
| 58 ] | 58 ] |
| 59 configs += [ "//gpu:gpu_implementation" ] | 59 configs += [ "//gpu:gpu_implementation" ] |
| 60 public_deps = [ | 60 public_deps = [ |
| 61 "//base", | 61 "//base", |
| 62 "//ipc", | 62 "//ipc", |
| 63 "//ui/base", | 63 "//ui/base", |
| 64 "//ui/display", |
| 64 "//ui/events:events_base", | 65 "//ui/events:events_base", |
| 65 "//ui/gfx", | 66 "//ui/gfx", |
| 66 "//ui/gfx/geometry", | 67 "//ui/gfx/geometry", |
| 67 "//ui/gl", | 68 "//ui/gl", |
| 68 "//ui/gl/init", | 69 "//ui/gl/init", |
| 69 "//url", | 70 "//url", |
| 70 ] | 71 ] |
| 71 deps = [ | 72 deps = [ |
| 72 "//base/third_party/dynamic_annotations", | 73 "//base/third_party/dynamic_annotations", |
| 73 "//gpu/command_buffer/common:common_sources", | 74 "//gpu/command_buffer/common:common_sources", |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 deps += [ "//ui/android:ui_java" ] | 176 deps += [ "//ui/android:ui_java" ] |
| 176 } | 177 } |
| 177 if (is_mac) { | 178 if (is_mac) { |
| 178 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 179 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 179 } | 180 } |
| 180 if (use_ozone) { | 181 if (use_ozone) { |
| 181 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 182 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 182 deps += [ "//ui/ozone" ] | 183 deps += [ "//ui/ozone" ] |
| 183 } | 184 } |
| 184 } | 185 } |
| OLD | NEW |