| 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 mojo_native_application("mus") { | 12 mojo_native_application("mus") { |
| 13 sources = [ | 13 sources = [ |
| 14 "main.cc", | 14 "main.cc", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 deps = [ | 17 deps = [ |
| 18 ":lib", | 18 ":lib", |
| 19 ":resources_100", | 19 ":resources_100", |
| 20 ":resources_200", | 20 ":resources_200", |
| 21 ":resources_strings", | 21 ":resources_strings", |
| 22 "//mojo/platform_handle:for_shared_library", | 22 "//mojo/platform_handle:for_shared_library", |
| 23 "//mojo/shell/public/cpp:sources", | 23 "//services/shell/public/cpp:sources", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 if (is_win) { | 26 if (is_win) { |
| 27 deps += [ ":copy_gl_libraries" ] | 27 deps += [ ":copy_gl_libraries" ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 data_deps = [ | 30 data_deps = [ |
| 31 ":manifest", | 31 ":manifest", |
| 32 ] | 32 ] |
| 33 | 33 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "//base", | 74 "//base", |
| 75 "//cc", | 75 "//cc", |
| 76 "//cc/surfaces", | 76 "//cc/surfaces", |
| 77 "//components/mus/gles2", | 77 "//components/mus/gles2", |
| 78 "//components/mus/public/interfaces", | 78 "//components/mus/public/interfaces", |
| 79 "//components/mus/surfaces", | 79 "//components/mus/surfaces", |
| 80 "//components/mus/ws:lib", | 80 "//components/mus/ws:lib", |
| 81 "//components/resource_provider/public/cpp", | 81 "//components/resource_provider/public/cpp", |
| 82 "//mojo/common:common_base", | 82 "//mojo/common:common_base", |
| 83 "//mojo/services/tracing/public/cpp", | 83 "//mojo/services/tracing/public/cpp", |
| 84 "//mojo/shell/public/cpp", | 84 "//services/shell/public/cpp", |
| 85 "//ui/events", | 85 "//ui/events", |
| 86 "//ui/events/ozone:events_ozone_layout", | 86 "//ui/events/ozone:events_ozone_layout", |
| 87 "//ui/gl:gl", | 87 "//ui/gl:gl", |
| 88 "//ui/platform_window:platform_impls", | 88 "//ui/platform_window:platform_impls", |
| 89 "//ui/platform_window:platform_window", | 89 "//ui/platform_window:platform_window", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 data_deps = [ | 92 data_deps = [ |
| 93 "//components/resource_provider", | 93 "//components/resource_provider", |
| 94 ] | 94 ] |
| (...skipping 30 matching lines...) Expand all Loading... |
| 125 | 125 |
| 126 repack("resources_200") { | 126 repack("resources_200") { |
| 127 sources = [ | 127 sources = [ |
| 128 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 128 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 129 ] | 129 ] |
| 130 output = "$root_out_dir/mus_app_resources_200.pak" | 130 output = "$root_out_dir/mus_app_resources_200.pak" |
| 131 deps = [ | 131 deps = [ |
| 132 "//ui/resources", | 132 "//ui/resources", |
| 133 ] | 133 ] |
| 134 } | 134 } |
| OLD | NEW |