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") |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 deps = [ | 74 deps = [ |
75 "//base", | 75 "//base", |
76 "//cc", | 76 "//cc", |
77 "//cc/surfaces", | 77 "//cc/surfaces", |
78 "//components/mus/gles2", | 78 "//components/mus/gles2", |
79 "//components/mus/gpu", | 79 "//components/mus/gpu", |
80 "//components/mus/public/interfaces", | 80 "//components/mus/public/interfaces", |
81 "//components/mus/surfaces", | 81 "//components/mus/surfaces", |
82 "//components/mus/ws:lib", | 82 "//components/mus/ws:lib", |
83 "//components/mus/ws:test_interface", | 83 "//components/mus/ws:test_interface", |
84 "//components/resource_provider/public/cpp", | |
85 "//mojo/common:common_base", | 84 "//mojo/common:common_base", |
| 85 "//services/catalog/public/cpp", |
86 "//services/shell/public/cpp", | 86 "//services/shell/public/cpp", |
87 "//services/tracing/public/cpp", | 87 "//services/tracing/public/cpp", |
88 "//ui/events", | 88 "//ui/events", |
89 "//ui/events/ozone:events_ozone_layout", | 89 "//ui/events/ozone:events_ozone_layout", |
90 "//ui/gl:gl", | 90 "//ui/gl:gl", |
91 "//ui/platform_window:platform_impls", | 91 "//ui/platform_window:platform_impls", |
92 "//ui/platform_window:platform_window", | 92 "//ui/platform_window:platform_window", |
93 ] | 93 ] |
94 | 94 |
95 data_deps = [ | |
96 "//components/resource_provider", | |
97 ] | |
98 | |
99 if (use_x11) { | 95 if (use_x11) { |
100 public_configs = [ "//build/config/linux:x11" ] | 96 public_configs = [ "//build/config/linux:x11" ] |
101 public_deps += [ "//ui/events/platform/x11" ] | 97 public_deps += [ "//ui/events/platform/x11" ] |
102 } | 98 } |
103 | 99 |
104 if (use_ozone) { | 100 if (use_ozone) { |
105 deps += [ "//ui/ozone:ozone" ] | 101 deps += [ "//ui/ozone:ozone" ] |
106 } | 102 } |
107 } | 103 } |
108 | 104 |
(...skipping 19 matching lines...) Expand all Loading... |
128 | 124 |
129 repack("resources_200") { | 125 repack("resources_200") { |
130 sources = [ | 126 sources = [ |
131 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 127 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
132 ] | 128 ] |
133 output = "$root_out_dir/mus_app_resources_200.pak" | 129 output = "$root_out_dir/mus_app_resources_200.pak" |
134 deps = [ | 130 deps = [ |
135 "//ui/resources", | 131 "//ui/resources", |
136 ] | 132 ] |
137 } | 133 } |
OLD | NEW |