OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Dart project 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 group("dart") { |
| 8 deps = [ |
| 9 ":dart_content_handler", |
| 10 ] |
| 11 } |
| 12 |
| 13 mojo_native_application("dart_content_handler") { |
| 14 sources = [ |
| 15 "content_handler_main.cc", |
| 16 "dart_app.cc", |
| 17 "dart_app.h", |
| 18 ] |
| 19 |
| 20 deps = [ |
| 21 "//base", |
| 22 "//base:i18n", |
| 23 "//crypto", |
| 24 "//dart/runtime:libdart", |
| 25 "//mojo/application", |
| 26 "//mojo/application:application", |
| 27 "//mojo/application:content_handler", |
| 28 "//mojo/dart/embedder:dart_controller", |
| 29 "//mojo/common", |
| 30 "//mojo/environment:chromium", |
| 31 "//mojo/public/cpp/system", |
| 32 "//mojo/public/cpp/utility", |
| 33 "//mojo/public/interfaces/application", |
| 34 "//mojo/services/content_handler/public/interfaces", |
| 35 "//mojo/services/network/public/interfaces", |
| 36 ] |
| 37 } |
| 38 |
| 39 mojo_native_application("dart_apptests") { |
| 40 testonly = true |
| 41 |
| 42 sources = [ |
| 43 "echo_apptest.cc", |
| 44 ] |
| 45 |
| 46 deps = [ |
| 47 "//base", |
| 48 "//mojo/application", |
| 49 "//mojo/application:test_support", |
| 50 "//mojo/public/cpp/bindings", |
| 51 "//mojo/public/cpp/system", |
| 52 "//services/dart/test:echo_service", |
| 53 ] |
| 54 } |
OLD | NEW |