| 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.gni") | 5 import("//third_party/mojo/src/mojo/public/mojo.gni") |
| 6 | 6 |
| 7 group("desktop") { | 7 group("desktop") { |
| 8 deps = [ | 8 deps = [ |
| 9 ":mandoline", | 9 ":mandoline", |
| 10 ] | 10 ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 executable("mandoline") { | 13 executable("mandoline") { |
| 14 sources = [ | 14 sources = [ |
| 15 "../core_services_initialization.cc", | 15 "../core_services_initialization.cc", |
| 16 "launcher_process.cc", | 16 "launcher_process.cc", |
| 17 "launcher_process.h", | 17 "launcher_process.h", |
| 18 "main.cc", | 18 "main.cc", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 22 "//base", | 22 "//base", |
| 23 "//build/config/sanitizers:deps", | 23 "//build/config/sanitizers:deps", |
| 24 "//mojo/common", | 24 "//mojo/common", |
| 25 "//mojo/environment:chromium", | 25 "//mojo/environment:chromium", |
| 26 "//mojo/runner:lib", | 26 "//mojo/runner:lib", |
| 27 ] | 27 ] |
| 28 | 28 |
| 29 data_deps = [ "//mandoline/services/core_services/" ] | 29 data_deps = [ |
| 30 "//components/html_viewer", |
| 31 "//mandoline/services/core_services/", |
| 32 ] |
| 30 } | 33 } |
| OLD | NEW |