| 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| 11 | 11 |
| 12 executable("mandoline") { | 12 executable("mandoline") { |
| 13 sources = [] | 13 sources = [] |
| 14 | 14 |
| 15 deps = [ | 15 deps = [ |
| 16 "//base", | 16 "//base", |
| 17 "//build/config/sanitizers:deps", | 17 "//build/config/sanitizers:deps", |
| 18 "//mojo/common", | 18 "//mojo/common", |
| 19 "//mojo/environment:chromium", | 19 "//mojo/environment:chromium", |
| 20 "//mojo/shell:lib", | 20 "//mojo/runner:lib", |
| 21 ] | 21 ] |
| 22 | 22 |
| 23 if (!is_android) { | 23 if (!is_android) { |
| 24 sources += [ | 24 sources += [ |
| 25 "desktop/launcher_process.cc", | 25 "desktop/launcher_process.cc", |
| 26 "desktop/launcher_process.h", | 26 "desktop/launcher_process.h", |
| 27 "desktop/main.cc", | 27 "desktop/main.cc", |
| 28 ] | 28 ] |
| 29 } | 29 } |
| 30 } | 30 } |
| OLD | NEW |