Index: mojo/examples/compositor_app/BUILD.gn |
diff --git a/mojo/examples/compositor_app/BUILD.gn b/mojo/examples/compositor_app/BUILD.gn |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4d6121cfcfead21dce39c9104e6ef41a57fa0011 |
--- /dev/null |
+++ b/mojo/examples/compositor_app/BUILD.gn |
@@ -0,0 +1,28 @@ |
+# Copyright 2014 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. |
+ |
+import("//mojo/system.gni") |
+ |
+# GYP version mojo/mojo_examples.gypi:mojo_compositor_app |
+shared_library("compositor_app") { |
+ output_name = "mojo_compositor_app" |
+ |
+ sources = [ |
+ "compositor_app.cc", |
+ "compositor_host.cc", |
+ "compositor_host.h", |
+ ] |
+ |
+ deps = [ |
+ "//base", |
+ "//cc", |
+ "//mojo/cc", |
+ "//mojo/common", |
+ "//mojo/public/cpp/application:chromium", |
+ "//mojo/services/public/cpp/geometry", |
+ "//mojo/services/public/interfaces/geometry", |
+ "//mojo/services/public/interfaces/gpu", |
+ "//mojo/services/public/interfaces/native_viewport", |
+ ] + mojo_system_for_shared_library + mojo_gles2_for_shared_library |
+} |