| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 group("dart") { | 7 group("dart") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":dart_content_handler", | 9 ":dart_content_handler", |
| 10 ] | 10 ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "content_handler_main.cc", | 28 "content_handler_main.cc", |
| 29 "dart_app.cc", | 29 "dart_app.cc", |
| 30 "dart_app.h", | 30 "dart_app.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 ":dart_controller", | 34 ":dart_controller", |
| 35 "//base", | 35 "//base", |
| 36 "//base:i18n", | 36 "//base:i18n", |
| 37 "//crypto", | 37 "//crypto", |
| 38 "//dart/runtime:libdart", | |
| 39 "//mojo/application", | 38 "//mojo/application", |
| 40 "//mojo/application:application", | 39 "//mojo/application:application", |
| 41 "//mojo/application:content_handler", | 40 "//mojo/application:content_handler", |
| 42 "//mojo/dart/embedder:dart_controller_no_snapshot", | 41 "//mojo/dart/embedder:dart_controller_no_snapshot", |
| 43 "//mojo/data_pipe_utils", | 42 "//mojo/data_pipe_utils", |
| 44 "//mojo/common:tracing_impl", | 43 "//mojo/common:tracing_impl", |
| 45 "//mojo/environment:chromium", | 44 "//mojo/environment:chromium", |
| 46 "//mojo/public/cpp/system", | 45 "//mojo/public/cpp/system", |
| 47 "//mojo/public/cpp/utility", | 46 "//mojo/public/cpp/utility", |
| 48 "//mojo/public/interfaces/application", | 47 "//mojo/public/interfaces/application", |
| 48 "//mojo/public/third_party/dart/runtime:libdart", |
| 49 "//mojo/services/content_handler/public/interfaces", | 49 "//mojo/services/content_handler/public/interfaces", |
| 50 "//mojo/services/network/public/interfaces", | 50 "//mojo/services/network/public/interfaces", |
| 51 "//mojo/services/url_response_disk_cache/public/interfaces", | 51 "//mojo/services/url_response_disk_cache/public/interfaces", |
| 52 "//third_party/zlib:zip", | 52 "//third_party/zlib:zip", |
| 53 "//url:url", | 53 "//url:url", |
| 54 ] | 54 ] |
| 55 } | 55 } |
| OLD | NEW |