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("app") { | 5 group("app") { |
8 deps = [ | 6 deps = [ |
9 "//mandoline/ui", | 7 "//mandoline/ui", |
10 ] | 8 ] |
11 | 9 |
12 if (is_android) { | 10 if (is_android) { |
13 deps += [ "//mandoline/app/android" ] | 11 deps += [ "//mandoline/app/android" ] |
14 } else { | 12 } else { |
15 deps += [ "//mandoline/app/desktop" ] | 13 deps += [ "//mandoline/app/desktop" ] |
16 } | 14 } |
17 | 15 |
18 data_deps = [ | 16 data_deps = [ |
19 "//mandoline/ui/browser", | 17 "//mandoline/ui/browser", |
20 "//mandoline/services/core_services", | 18 "//mandoline/services/core_services", |
21 "//mojo/runner:mojo_runner", | 19 "//mojo/runner:mojo_runner", |
22 ] | 20 ] |
23 } | 21 } |
OLD | NEW |