| 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 shared_library("http_server") { | 5 shared_library("http_server") { |
| 6 output_name = "mojo_http_server" | 6 output_name = "mojo_http_server" |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "http_server.cc", | 9 "http_server.cc", |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 deps = [ | 12 deps = [ |
| 13 "//base", | 13 "//base", |
| 14 "//mojo/common", |
| 14 "//mojo/public/c/system:for_shared_library", | 15 "//mojo/public/c/system:for_shared_library", |
| 15 "//mojo/public/cpp/application:standalone", | 16 "//mojo/public/cpp/application:standalone", |
| 16 "//mojo/public/cpp/bindings", | 17 "//mojo/public/cpp/bindings", |
| 17 "//mojo/public/cpp/utility", | 18 "//mojo/public/cpp/utility", |
| 18 "//mojo/services/public/interfaces/network", | 19 "//mojo/services/public/interfaces/network", |
| 19 ] | 20 ] |
| 20 } | 21 } |
| OLD | NEW |