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