| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after 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/http_server/interfaces:interfaces_sync", |
| 63 "//mojo/services/network/interfaces", | 64 "//mojo/services/network/interfaces", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 data_deps = [ ":http_server($default_toolchain)" ] | 67 data_deps = [ |
| 68 ":http_server($default_toolchain)", |
| 69 ] |
| 67 } | 70 } |
| OLD | NEW |