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

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

Issue 2731733002: Convert Ozone GL OSMesa implementation. (Closed)
Patch Set: Cleanup. Created 3 years, 9 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 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 assert(use_ozone) 7 assert(use_ozone)
8 8
9 source_set("common") { 9 source_set("common") {
10 sources = [ 10 sources = [
11 "display_mode_proxy.cc", 11 "display_mode_proxy.cc",
12 "display_mode_proxy.h", 12 "display_mode_proxy.h",
13 "display_snapshot_proxy.cc", 13 "display_snapshot_proxy.cc",
14 "display_snapshot_proxy.h", 14 "display_snapshot_proxy.h",
15 "egl_util.cc", 15 "egl_util.cc",
16 "egl_util.h", 16 "egl_util.h",
17 "gl_ozone_egl.cc", 17 "gl_ozone_egl.cc",
18 "gl_ozone_egl.h", 18 "gl_ozone_egl.h",
19 "gl_ozone_osmesa.cc",
20 "gl_ozone_osmesa.h",
19 "gpu/ozone_gpu_message_generator.cc", 21 "gpu/ozone_gpu_message_generator.cc",
20 "gpu/ozone_gpu_message_generator.h", 22 "gpu/ozone_gpu_message_generator.h",
21 "gpu/ozone_gpu_message_params.cc", 23 "gpu/ozone_gpu_message_params.cc",
22 "gpu/ozone_gpu_message_params.h", 24 "gpu/ozone_gpu_message_params.h",
23 "gpu/ozone_gpu_messages.h", 25 "gpu/ozone_gpu_messages.h",
24 "stub_overlay_manager.cc", 26 "stub_overlay_manager.cc",
25 "stub_overlay_manager.h", 27 "stub_overlay_manager.h",
26 ] 28 ]
27 29
28 public_deps = [ 30 public_deps = [
29 "//ui/ozone:ozone_base", 31 "//ui/ozone:ozone_base",
30 ] 32 ]
31 33
32 deps = [ 34 deps = [
33 "//ui/gl", 35 "//ui/gl",
34 ] 36 ]
35 37
36 visibility = [ "//ui/ozone/platform/*" ] 38 visibility = [ "//ui/ozone/platform/*" ]
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698