| 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("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 source_set("lib") { | 75 source_set("lib") { |
| 76 sources = [ | 76 sources = [ |
| 77 "mus_app.cc", | 77 "mus_app.cc", |
| 78 "mus_app.h", | 78 "mus_app.h", |
| 79 ] | 79 ] |
| 80 | 80 |
| 81 public_deps = [ | 81 public_deps = [ |
| 82 "//components/mus/common:mus_common", | 82 "//components/mus/common:mus_common", |
| 83 ] | 83 ] |
| 84 deps = [ | 84 deps = [ |
| 85 ":resources_100", | |
| 86 ":resources_200", | |
| 87 ":resources_strings", | |
| 88 "//base", | 85 "//base", |
| 89 "//cc", | 86 "//cc", |
| 90 "//cc/surfaces", | 87 "//cc/surfaces", |
| 91 "//components/mus/gles2", | 88 "//components/mus/gles2", |
| 92 "//components/mus/public/interfaces", | 89 "//components/mus/public/interfaces", |
| 93 "//components/mus/surfaces", | 90 "//components/mus/surfaces", |
| 94 "//components/mus/ws:lib", | 91 "//components/mus/ws:lib", |
| 95 "//components/resource_provider/public/cpp", | 92 "//components/resource_provider/public/cpp", |
| 96 "//mojo/common:common_base", | 93 "//mojo/common:common_base", |
| 97 "//mojo/services/tracing/public/cpp", | 94 "//mojo/services/tracing/public/cpp", |
| 98 "//mojo/shell/public/cpp", | 95 "//mojo/shell/public/cpp", |
| 99 "//ui/events", | 96 "//ui/events", |
| 100 "//ui/gl:gl", | 97 "//ui/gl:gl", |
| 101 "//ui/platform_window:platform_impls", | 98 "//ui/platform_window:platform_impls", |
| 102 "//ui/platform_window:platform_window", | 99 "//ui/platform_window:platform_window", |
| 103 ] | 100 ] |
| 104 | 101 |
| 105 data_deps = [ | 102 data_deps = [ |
| 103 ":resources_100", |
| 104 ":resources_200", |
| 105 ":resources_strings", |
| 106 "//components/resource_provider", | 106 "//components/resource_provider", |
| 107 ] | 107 ] |
| 108 | 108 |
| 109 if (use_x11) { | 109 if (use_x11) { |
| 110 public_configs = [ "//build/config/linux:x11" ] | 110 public_configs = [ "//build/config/linux:x11" ] |
| 111 public_deps += [ "//ui/events/platform/x11" ] | 111 public_deps += [ "//ui/events/platform/x11" ] |
| 112 } | 112 } |
| 113 | 113 |
| 114 if (use_ozone) { | 114 if (use_ozone) { |
| 115 deps += [ "//ui/ozone:ozone" ] | 115 deps += [ "//ui/ozone:ozone" ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 138 | 138 |
| 139 repack("resources_200") { | 139 repack("resources_200") { |
| 140 sources = [ | 140 sources = [ |
| 141 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 141 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
| 142 ] | 142 ] |
| 143 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak" | 143 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak" |
| 144 deps = [ | 144 deps = [ |
| 145 "//ui/resources", | 145 "//ui/resources", |
| 146 ] | 146 ] |
| 147 } | 147 } |
| OLD | NEW |