OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("lib") { | 7 source_set("lib") { |
8 sources = [ | 8 sources = [ |
9 "devtools_http_server.cc", | 9 "devtools_http_server.cc", |
10 "devtools_http_server.h", | 10 "devtools_http_server.h", |
11 "devtools_registry_impl.cc", | 11 "devtools_registry_impl.cc", |
12 "devtools_registry_impl.h", | 12 "devtools_registry_impl.h", |
13 "devtools_service.cc", | 13 "devtools_service.cc", |
14 "devtools_service.h", | 14 "devtools_service.h", |
15 "devtools_service_delegate.cc", | 15 "devtools_service_delegate.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
30 mojo_native_application("devtools_service") { | 30 mojo_native_application("devtools_service") { |
31 sources = [ | 31 sources = [ |
32 "main.cc", | 32 "main.cc", |
33 ] | 33 ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 ":lib", | 36 ":lib", |
37 "//mojo/application/public/cpp", | 37 "//mojo/application/public/cpp", |
38 ] | 38 ] |
39 } | 39 } |
OLD | NEW |