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