Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: components/proxy_resolver/BUILD.gn

Issue 1128453004: Embed a simple Mojo shell in content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698