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 source_set("dart") { |
| 6 sources = [ |
| 7 "dart_library_provider_files.cc", |
| 8 "dart_library_provider_files.h", |
| 9 "dart_library_provider_network.cc", |
| 10 "dart_library_provider_network.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//build/config/sanitizers:deps", |
| 16 "//dart/runtime:libdart", |
| 17 "//mojo/common", |
| 18 "//mojo/public/cpp/application", |
| 19 "//mojo/services/network/public/interfaces", |
| 20 "//sky/engine/tonic", |
| 21 "//sky/engine/wtf", |
| 22 "//url", |
| 23 ] |
| 24 } |
OLD | NEW |