| Index: components/mus/surfaces/BUILD.gn
|
| diff --git a/components/mus/surfaces/BUILD.gn b/components/mus/surfaces/BUILD.gn
|
| index 4d8e623bba100dd08529c5a3eb9c93391de7b78f..046908671ddbed8cda4abffebff8c9140b80d215 100644
|
| --- a/components/mus/surfaces/BUILD.gn
|
| +++ b/components/mus/surfaces/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//build/config/ui.gni")
|
| +
|
| source_set("surfaces") {
|
| sources = [
|
| "direct_output_surface.cc",
|
| @@ -34,4 +36,14 @@ source_set("surfaces") {
|
| "//ui/gl",
|
| "//ui/mojo/geometry:interfaces",
|
| ]
|
| +
|
| + if (use_ozone) {
|
| + sources += [
|
| + "buffer_queue.cc",
|
| + "buffer_queue.h",
|
| + "direct_output_surface_ozone.cc",
|
| + "direct_output_surface_ozone.h",
|
| + ]
|
| + deps += [ "//gpu/command_buffer/common" ]
|
| + }
|
| }
|
|
|