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

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

Issue 853353003: ui/compositor: Provide its own 'in process' ContextProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rm grcontext_for_webgraphicscontext3d.* Created 5 years, 11 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 component("compositor") { 7 component("compositor") {
8 sources = [ 8 sources = [
9 "closure_animation_observer.cc", 9 "closure_animation_observer.cc",
10 "closure_animation_observer.h", 10 "closure_animation_observer.h",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 80
81 source_set("test_support") { 81 source_set("test_support") {
82 testonly = true 82 testonly = true
83 sources = [ 83 sources = [
84 "test/context_factories_for_test.cc", 84 "test/context_factories_for_test.cc",
85 "test/context_factories_for_test.h", 85 "test/context_factories_for_test.h",
86 "test/draw_waiter_for_test.cc", 86 "test/draw_waiter_for_test.cc",
87 "test/draw_waiter_for_test.h", 87 "test/draw_waiter_for_test.h",
88 "test/in_process_context_factory.cc", 88 "test/in_process_context_factory.cc",
89 "test/in_process_context_factory.h", 89 "test/in_process_context_factory.h",
90 "test/in_process_context_provider.cc",
91 "test/in_process_context_provider.h",
90 "test/layer_animator_test_controller.cc", 92 "test/layer_animator_test_controller.cc",
91 "test/layer_animator_test_controller.h", 93 "test/layer_animator_test_controller.h",
92 "test/test_compositor_host.h", 94 "test/test_compositor_host.h",
93 "test/test_compositor_host_mac.mm", 95 "test/test_compositor_host_mac.mm",
94 "test/test_compositor_host_win.cc", 96 "test/test_compositor_host_win.cc",
95 "test/test_layer_animation_delegate.cc", 97 "test/test_layer_animation_delegate.cc",
96 "test/test_layer_animation_delegate.h", 98 "test/test_layer_animation_delegate.h",
97 "test/test_layer_animation_observer.cc", 99 "test/test_layer_animation_observer.cc",
98 "test/test_layer_animation_observer.h", 100 "test/test_layer_animation_observer.h",
99 "test/test_layers.cc", 101 "test/test_layers.cc",
(...skipping 13 matching lines...) Expand all
113 "//cc/surfaces", 115 "//cc/surfaces",
114 "//cc:test_support", 116 "//cc:test_support",
115 "//gpu/blink", 117 "//gpu/blink",
116 "//skia", 118 "//skia",
117 "//testing/gtest", 119 "//testing/gtest",
118 "//third_party/WebKit/public:blink_minimal", 120 "//third_party/WebKit/public:blink_minimal",
119 "//ui/base", 121 "//ui/base",
120 "//ui/gfx", 122 "//ui/gfx",
121 "//ui/gfx/geometry", 123 "//ui/gfx/geometry",
122 "//ui/gl", 124 "//ui/gl",
123 "//webkit/common/gpu",
124 ] 125 ]
125 126
126 if (use_x11) { 127 if (use_x11) {
127 configs += [ "//build/config/linux:x11" ] 128 configs += [ "//build/config/linux:x11" ]
128 deps += [ "//ui/gfx/x" ] 129 deps += [ "//ui/gfx/x" ]
129 } 130 }
130 131
131 if (use_ozone) { 132 if (use_ozone) {
132 sources += [ "test/test_compositor_host_ozone.cc" ] 133 sources += [ "test/test_compositor_host_ozone.cc" ]
133 } else if (use_x11) { 134 } else if (use_x11) {
(...skipping 26 matching lines...) Expand all
160 # "//ui/gfx", 161 # "//ui/gfx",
161 # "//ui/gfx/geometry", 162 # "//ui/gfx/geometry",
162 # "//ui/gl", 163 # "//ui/gl",
163 # "//ui/resources", 164 # "//ui/resources",
164 # ] 165 # ]
165 # 166 #
166 # if (is_linux) { 167 # if (is_linux) {
167 # deps += [ "//third_party/mesa:osmesa" ] 168 # deps += [ "//third_party/mesa:osmesa" ]
168 # } 169 # }
169 #} 170 #}
OLDNEW
« no previous file with comments | « no previous file | ui/compositor/compositor.gyp » ('j') | ui/compositor/test/in_process_context_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698