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