| 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 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//mojo/public/mojo_constants.gni") | 9 import("//mojo/public/mojo_constants.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| 11 | 11 |
| 12 group("all") { | 12 group("all") { |
| 13 testonly = true | 13 testonly = true |
| 14 deps = [ | 14 deps = [ |
| 15 ":mus", | 15 ":mus", |
| 16 "//components/mus/test_wm", | 16 "//components/mus/test_wm", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 mojo_native_application("mus") { | 20 mojo_native_application("mus") { |
| 21 sources = [ | 21 sources = [ |
| 22 "main.cc", | 22 "main.cc", |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 deps = [ | 25 deps = [ |
| 26 ":lib", | 26 ":lib", |
| 27 ":resources_100", | 27 ":resources_100", |
| 28 ":resources_200", | 28 ":resources_200", |
| 29 ":resources_strings", | 29 ":resources_strings", |
| 30 "//mojo/platform_handle:for_shared_library", | |
| 31 "//services/shell/public/cpp:sources", | 30 "//services/shell/public/cpp:sources", |
| 32 "//services/tracing/public/interfaces", | 31 "//services/tracing/public/interfaces", |
| 33 ] | 32 ] |
| 34 | 33 |
| 35 if (is_win) { | 34 if (is_win) { |
| 36 deps += [ ":copy_gl_libraries" ] | 35 deps += [ ":copy_gl_libraries" ] |
| 37 } | 36 } |
| 38 | 37 |
| 39 data_deps = [ | 38 data_deps = [ |
| 40 ":manifest", | 39 ":manifest", |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 132 |
| 134 repack("resources_200") { | 133 repack("resources_200") { |
| 135 sources = [ | 134 sources = [ |
| 136 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 135 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 137 ] | 136 ] |
| 138 output = "$root_out_dir/mus_app_resources_200.pak" | 137 output = "$root_out_dir/mus_app_resources_200.pak" |
| 139 deps = [ | 138 deps = [ |
| 140 "//ui/resources", | 139 "//ui/resources", |
| 141 ] | 140 ] |
| 142 } | 141 } |
| OLD | NEW |