| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//mojo/public/mojo_application.gni") |
| 6 |
| 7 mojo_native_application("sky_packaged_app_viewer") { |
| 8 sources = [ |
| 9 "content_handler_impl.cc", |
| 10 "content_handler_impl.h", |
| 11 "sky_packaged_app_viewer.cc", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 "//base", |
| 16 "//mojo/application", |
| 17 "//mojo/common", |
| 18 "//mojo/public/cpp/application", |
| 19 "//mojo/public/cpp/bindings", |
| 20 "//mojo/public/cpp/utility", |
| 21 "//mojo/services/content_handler/public/interfaces", |
| 22 "//mojo/services/http_server/public/cpp", |
| 23 "//mojo/services/http_server/public/interfaces", |
| 24 "//sky/viewer:lib", |
| 25 "//third_party/zlib:zip", |
| 26 ] |
| 27 } |
| OLD | NEW |