diff options
Diffstat (limited to 'src/core/ozone/BUILD.gn')
| -rw-r--r-- | src/core/ozone/BUILD.gn | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/ozone/BUILD.gn b/src/core/ozone/BUILD.gn new file mode 100644 index 000000000..b96d8a47a --- /dev/null +++ b/src/core/ozone/BUILD.gn @@ -0,0 +1,25 @@ +# Copyright 2016 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +source_set("qt") { + sources = [ + "ozone_platform_qt.h", + "ozone_platform_qt.cpp", + ] + + import("//ui/base/ui_features.gni") + import("//ui/gl/features.gni") + + deps = [ + "//base", + "//ui/ozone:ozone_base", + "//ui/ozone/common", + ] + + defines = [ "OZONE_IMPLEMENTATION" ] + + if (is_linux && !is_desktop_linux) { + deps += [ "//ui/events/ozone:events_ozone_evdev"] + } +} |
