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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 "mus_app.h", | 76 "mus_app.h", |
77 ] | 77 ] |
78 | 78 |
79 public_deps = [ | 79 public_deps = [ |
80 "//components/mus/common:mus_common", | 80 "//components/mus/common:mus_common", |
81 ] | 81 ] |
82 deps = [ | 82 deps = [ |
83 "//base", | 83 "//base", |
84 "//cc", | 84 "//cc", |
85 "//cc/surfaces", | 85 "//cc/surfaces", |
| 86 "//components/mus/clipboard:lib", |
86 "//components/mus/gles2", | 87 "//components/mus/gles2", |
87 "//components/mus/gpu", | 88 "//components/mus/gpu", |
88 "//components/mus/public/interfaces", | 89 "//components/mus/public/interfaces", |
89 "//components/mus/surfaces", | 90 "//components/mus/surfaces", |
90 "//components/mus/ws:lib", | 91 "//components/mus/ws:lib", |
91 "//components/mus/ws:test_interface", | 92 "//components/mus/ws:test_interface", |
92 "//mojo/common:common_base", | 93 "//mojo/common:common_base", |
93 "//services/catalog/public/cpp", | 94 "//services/catalog/public/cpp", |
94 "//services/shell/public/cpp", | 95 "//services/shell/public/cpp", |
95 "//services/tracing/public/cpp", | 96 "//services/tracing/public/cpp", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 | 133 |
133 repack("resources_200") { | 134 repack("resources_200") { |
134 sources = [ | 135 sources = [ |
135 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", | 136 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", |
136 ] | 137 ] |
137 output = "$root_out_dir/mus_app_resources_200.pak" | 138 output = "$root_out_dir/mus_app_resources_200.pak" |
138 deps = [ | 139 deps = [ |
139 "//ui/resources", | 140 "//ui/resources", |
140 ] | 141 ] |
141 } | 142 } |
OLD | NEW |