Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Side by Side Diff: ui/ozone/BUILD.gn

Issue 1134993003: ozone: Implement zero/one-copy texture for Ozone GBM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: not-leak USE_OZONE_GBM, GetSupportedGpuMemoryBufferConfigurations from ozone, return handle Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("//ui/ozone/ozone.gni") 5 import("//ui/ozone/ozone.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 # The list of platforms that will be built. 8 # The list of platforms that will be built.
9 ozone_platforms = [] 9 ozone_platforms = []
10 10
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "public/surface_ozone_egl.cc", 65 "public/surface_ozone_egl.cc",
66 "public/surface_ozone_egl.h", 66 "public/surface_ozone_egl.h",
67 "public/system_input_injector.h", 67 "public/system_input_injector.h",
68 ] 68 ]
69 69
70 defines = [ "OZONE_BASE_IMPLEMENTATION" ] 70 defines = [ "OZONE_BASE_IMPLEMENTATION" ]
71 71
72 deps = [ 72 deps = [
73 "//base", 73 "//base",
74 "//skia", 74 "//skia",
75 "//ui/gfx/geometry", 75 "//ui/gfx",
76 ] 76 ]
77 } 77 }
78 78
79 component("ozone") { 79 component("ozone") {
80 sources = [ 80 sources = [
81 "common/display_mode_proxy.cc", 81 "common/display_mode_proxy.cc",
82 "common/display_mode_proxy.h", 82 "common/display_mode_proxy.h",
83 "common/display_snapshot_proxy.cc", 83 "common/display_snapshot_proxy.cc",
84 "common/display_snapshot_proxy.h", 84 "common/display_snapshot_proxy.h",
85 "common/display_util.cc", 85 "common/display_util.cc",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "common/display_util_unittest.cc", 178 "common/display_util_unittest.cc",
179 "run_all_unittests.cc", 179 "run_all_unittests.cc",
180 ] 180 ]
181 181
182 deps = [ 182 deps = [
183 "//base/test:test_support", 183 "//base/test:test_support",
184 "//testing/gtest", 184 "//testing/gtest",
185 "//ui/gfx/geometry", 185 "//ui/gfx/geometry",
186 ] + ozone_platform_test_deps 186 ] + ozone_platform_test_deps
187 } 187 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698