| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 | 12 |
| 13 source_set("mus") { | 13 source_set("mus") { |
| 14 sources = [ | 14 sources = [ |
| 15 "android_loader.cc", | 15 "android_loader.cc", |
| 16 "android_loader.h", | 16 "android_loader.h", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 deps = [ | 19 deps = [ |
| 20 ":lib", | 20 ":lib", |
| 21 "public/interfaces", | |
| 22 "//mojo/application/public/cpp:sources", | 21 "//mojo/application/public/cpp:sources", |
| 23 "//mojo/public/cpp/bindings", | 22 "//mojo/public/cpp/bindings", |
| 24 "//mojo/services/tracing/public/interfaces", | 23 "//mojo/services/tracing/public/interfaces", |
| 25 "//mojo/shell", | 24 "//mojo/shell", |
| 25 "public/interfaces", |
| 26 ] | 26 ] |
| 27 } | 27 } |
| 28 } else { | 28 } else { |
| 29 mojo_native_application("mus") { | 29 mojo_native_application("mus") { |
| 30 sources = [ | 30 sources = [ |
| 31 "main.cc", | 31 "main.cc", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 deps = [ | 34 deps = [ |
| 35 ":lib", | 35 ":lib", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "//ui/platform_window:platform_window", | 84 "//ui/platform_window:platform_window", |
| 85 ] | 85 ] |
| 86 | 86 |
| 87 if (use_x11) { | 87 if (use_x11) { |
| 88 public_configs = [ "//build/config/linux:x11" ] | 88 public_configs = [ "//build/config/linux:x11" ] |
| 89 public_deps = [ | 89 public_deps = [ |
| 90 "//ui/events/platform/x11", | 90 "//ui/events/platform/x11", |
| 91 ] | 91 ] |
| 92 } | 92 } |
| 93 } | 93 } |
| OLD | NEW |