| Index: components/exo/wayland/BUILD.gn
|
| diff --git a/components/exo/wayland/BUILD.gn b/components/exo/wayland/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..dc61157cf3da54d68ff58e8e44d75105d997d160
|
| --- /dev/null
|
| +++ b/components/exo/wayland/BUILD.gn
|
| @@ -0,0 +1,36 @@
|
| +# Copyright 2015 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("wayland") {
|
| + sources = [
|
| + "scoped_wl_types.cc",
|
| + "scoped_wl_types.h",
|
| + "server.cc",
|
| + "server.h",
|
| + "wayland_bindings.h",
|
| + ]
|
| +
|
| + defines = [ "EXO_IMPLEMENTATION" ]
|
| +
|
| + deps = [
|
| + "//base",
|
| + "//components/exo",
|
| + "//skia",
|
| + "//third_party/wayland:wayland_server",
|
| + ]
|
| +}
|
| +
|
| +source_set("unit_tests") {
|
| + testonly = true
|
| +
|
| + sources = [
|
| + "server_unittest.cc",
|
| + ]
|
| +
|
| + deps = [
|
| + "//testing/gtest",
|
| + "//third_party/wayland:wayland_client",
|
| + ":wayland",
|
| + ]
|
| +}
|
|
|