OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//tools/grit/repack.gni") | 5 import("//tools/grit/repack.gni") |
6 | 6 |
7 source_set("mus") { | 7 source_set("mus") { |
8 sources = [ | 8 sources = [ |
9 "aura_init.cc", | 9 "aura_init.cc", |
10 "aura_init.h", | 10 "aura_init.h", |
(...skipping 17 matching lines...) Expand all Loading... |
28 public_deps = [ | 28 public_deps = [ |
29 ":resources", | 29 ":resources", |
30 "//components/mus/public/cpp", | 30 "//components/mus/public/cpp", |
31 ] | 31 ] |
32 deps = [ | 32 deps = [ |
33 "//base", | 33 "//base", |
34 "//base:i18n", | 34 "//base:i18n", |
35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
36 "//cc", | 36 "//cc", |
37 "//cc/surfaces", | 37 "//cc/surfaces", |
| 38 "//components/bitmap_uploader", |
38 "//components/mus/gles2:lib", | 39 "//components/mus/gles2:lib", |
39 "//components/mus/public/cpp", | 40 "//components/mus/public/cpp", |
40 "//components/mus/public/interfaces", | 41 "//components/mus/public/interfaces", |
41 "//components/resource_provider/public/cpp", | 42 "//components/resource_provider/public/cpp", |
42 "//components/resource_provider/public/interfaces", | 43 "//components/resource_provider/public/interfaces", |
43 "//skia", | 44 "//skia", |
44 "//mojo/application/public/cpp", | 45 "//mojo/application/public/cpp", |
45 "//mojo/application/public/interfaces", | 46 "//mojo/application/public/interfaces", |
46 "//mojo/converters/geometry", | 47 "//mojo/converters/geometry", |
47 "//mojo/converters/ime", | 48 "//mojo/converters/ime", |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 82 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
82 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 83 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
83 ] | 84 ] |
84 output = "$root_out_dir/views_mus_resources.pak" | 85 output = "$root_out_dir/views_mus_resources.pak" |
85 deps = [ | 86 deps = [ |
86 "//ui/strings", | 87 "//ui/strings", |
87 "//ui/resources", | 88 "//ui/resources", |
88 "//ui/views/resources", | 89 "//ui/views/resources", |
89 ] | 90 ] |
90 } | 91 } |
OLD | NEW |