| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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/display", |
| 65 "//ui/events:events_base", | |
| 66 "//ui/gfx", | 65 "//ui/gfx", |
| 67 "//ui/gfx/geometry", | 66 "//ui/gfx/geometry", |
| 68 "//ui/gl", | 67 "//ui/gl", |
| 69 "//ui/gl/init", | 68 "//ui/gl/init", |
| 69 "//ui/latency", |
| 70 "//url", | 70 "//url", |
| 71 ] | 71 ] |
| 72 deps = [ | 72 deps = [ |
| 73 "//base/third_party/dynamic_annotations", | 73 "//base/third_party/dynamic_annotations", |
| 74 "//gpu/command_buffer/common:common_sources", | 74 "//gpu/command_buffer/common:common_sources", |
| 75 "//gpu/command_buffer/service:service_sources", | 75 "//gpu/command_buffer/service:service_sources", |
| 76 "//gpu/config:config_sources", | 76 "//gpu/config:config_sources", |
| 77 "//gpu/ipc/common:ipc_common_sources", | 77 "//gpu/ipc/common:ipc_common_sources", |
| 78 ] | 78 ] |
| 79 libs = [] | 79 libs = [] |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 deps += [ "//ui/android:ui_java" ] | 175 deps += [ "//ui/android:ui_java" ] |
| 176 } | 176 } |
| 177 if (is_mac) { | 177 if (is_mac) { |
| 178 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] | 178 sources += [ "gpu_memory_buffer_factory_io_surface_unittest.cc" ] |
| 179 } | 179 } |
| 180 if (use_ozone) { | 180 if (use_ozone) { |
| 181 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] | 181 sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ] |
| 182 deps += [ "//ui/ozone" ] | 182 deps += [ "//ui/ozone" ] |
| 183 } | 183 } |
| 184 } | 184 } |
| OLD | NEW |