OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
| 6 |
| 7 # Standalone native binary application target. There's no GYP version |
| 8 # of this target because it's not used by chromium. |
| 9 mojo_native_application("proxy_resolver") { |
| 10 output_name = "proxy_resolver" |
| 11 |
| 12 sources = [ |
| 13 "main.cc", |
| 14 ] |
| 15 |
| 16 deps = [ |
| 17 ":app", |
| 18 "//mojo/application", |
| 19 "//third_party/mojo/src/mojo/public/c/system", |
| 20 ] |
| 21 } |
| 22 |
| 23 # GYP version: components/components.gyp:proxy_resolver_app |
| 24 source_set("app") { |
| 25 sources = [ |
| 26 "proxy_resolver_app.cc", |
| 27 "proxy_resolver_app.h", |
| 28 ] |
| 29 |
| 30 public_deps = [ |
| 31 "//base", |
| 32 "//net/interfaces", |
| 33 "//third_party/mojo/src/mojo/public/cpp/application", |
| 34 ] |
| 35 |
| 36 deps = [ |
| 37 "//net:net_utility_services", |
| 38 ] |
| 39 } |
OLD | NEW |