Chromium Code Reviews| Index: mojo/examples/png_viewer/BUILD.gn |
| diff --git a/mojo/examples/png_viewer/BUILD.gn b/mojo/examples/png_viewer/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..96377e53675d7107b6633f909b4396fcd6a088bb |
| --- /dev/null |
| +++ b/mojo/examples/png_viewer/BUILD.gn |
| @@ -0,0 +1,26 @@ |
| +# 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_png_viewer |
| +shared_library("png_viewer") { |
| + output_name = "mojo_png_viewer" |
| + |
| + sources = [ |
| + "png_viewer.cc" |
| + ] |
| + |
| + deps = [ |
| + "//mojo/examples/media_viewer:bindings", |
| + "//mojo/public/cpp/application:chromium", |
| + "//mojo/public/cpp/bindings", |
| + "//mojo/public/cpp/utility", |
| + "//mojo/services/public/cpp/view_manager", |
| + "//mojo/services/public/interfaces/content_handler", |
| + "//mojo/services/public/interfaces/network", |
| + "//skia", |
| + "//ui/gfx", |
| + ] + mojo_system_for_shared_library |
|
brettw
2014/09/12 21:40:08
FWIW I'm not a fan of this and would prefer //mojo
|
| +} |