diff options
Diffstat (limited to 'chromium/components/exo/server/BUILD.gn')
-rw-r--r-- | chromium/components/exo/server/BUILD.gn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/chromium/components/exo/server/BUILD.gn b/chromium/components/exo/server/BUILD.gn new file mode 100644 index 00000000000..0dc6caef345 --- /dev/null +++ b/chromium/components/exo/server/BUILD.gn @@ -0,0 +1,21 @@ +# Copyright 2017 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. + +assert(is_chromeos) + +source_set("server") { + sources = [ + "wayland_server_controller.cc", + "wayland_server_controller.h", + ] + + deps = [ + "//ash/public/cpp", + "//ash/public/cpp/external_arc", + "//base", + "//components/exo", + "//components/exo/wayland", + "//skia", + ] +} |