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 mojo_native_application("http_server") { | 7 mojo_native_application("http_server") { |
8 sources = [ | 8 sources = [ |
9 "connection.cc", | 9 "connection.cc", |
10 "connection.h", | 10 "connection.h", |
(...skipping 11 matching lines...) Expand all Loading... |
22 "//base", | 22 "//base", |
23 "//mojo/common", | 23 "//mojo/common", |
24 "//mojo/data_pipe_utils", | 24 "//mojo/data_pipe_utils", |
25 "//mojo/public/cpp/application:standalone", | 25 "//mojo/public/cpp/application:standalone", |
26 "//mojo/public/cpp/bindings", | 26 "//mojo/public/cpp/bindings", |
27 "//mojo/public/cpp/environment", | 27 "//mojo/public/cpp/environment", |
28 "//mojo/public/cpp/system", | 28 "//mojo/public/cpp/system", |
29 "//mojo/public/cpp/utility", | 29 "//mojo/public/cpp/utility", |
30 "//mojo/services/http_server/cpp", | 30 "//mojo/services/http_server/cpp", |
31 "//mojo/services/http_server/interfaces", | 31 "//mojo/services/http_server/interfaces", |
32 "//mojo/services/network/public/interfaces", | 32 "//mojo/services/network/interfaces", |
33 "//third_party/re2", | 33 "//third_party/re2", |
34 ] | 34 ] |
35 | 35 |
36 if (is_win) { | 36 if (is_win) { |
37 cflags = [ | 37 cflags = [ |
38 # size_t to int. | 38 # size_t to int. |
39 "/wd4267", | 39 "/wd4267", |
40 ] | 40 ] |
41 } | 41 } |
42 } | 42 } |
(...skipping 10 matching lines...) Expand all Loading... |
53 deps = [ | 53 deps = [ |
54 "//base", | 54 "//base", |
55 "//mojo/application", | 55 "//mojo/application", |
56 "//mojo/application:test_support", | 56 "//mojo/application:test_support", |
57 "//mojo/data_pipe_utils", | 57 "//mojo/data_pipe_utils", |
58 "//mojo/public/cpp/bindings:callback", | 58 "//mojo/public/cpp/bindings:callback", |
59 "//mojo/public/cpp/environment", | 59 "//mojo/public/cpp/environment", |
60 "//mojo/public/cpp/system", | 60 "//mojo/public/cpp/system", |
61 "//mojo/services/http_server/cpp", | 61 "//mojo/services/http_server/cpp", |
62 "//mojo/services/http_server/interfaces", | 62 "//mojo/services/http_server/interfaces", |
63 "//mojo/services/network/public/interfaces", | 63 "//mojo/services/network/interfaces", |
64 ] | 64 ] |
65 | 65 |
66 data_deps = [ ":http_server($default_toolchain)" ] | 66 data_deps = [ ":http_server($default_toolchain)" ] |
67 } | 67 } |
OLD | NEW |