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 24 matching lines...) Expand all Loading... |
35 "//base", | 35 "//base", |
36 "//base:i18n", | 36 "//base:i18n", |
37 "//base/third_party/dynamic_annotations", | 37 "//base/third_party/dynamic_annotations", |
38 "//cc", | 38 "//cc", |
39 "//cc/surfaces", | 39 "//cc/surfaces", |
40 "//components/mus/gles2:lib", | 40 "//components/mus/gles2:lib", |
41 "//components/mus/public/cpp", | 41 "//components/mus/public/cpp", |
42 "//components/mus/public/interfaces", | 42 "//components/mus/public/interfaces", |
43 "//components/resource_provider/public/cpp", | 43 "//components/resource_provider/public/cpp", |
44 "//components/resource_provider/public/interfaces", | 44 "//components/resource_provider/public/interfaces", |
45 "//skia", | |
46 "//mojo/application/public/cpp", | 45 "//mojo/application/public/cpp", |
47 "//mojo/application/public/interfaces", | 46 "//mojo/application/public/interfaces", |
48 "//mojo/converters/geometry", | 47 "//mojo/converters/geometry", |
49 "//mojo/converters/ime", | 48 "//mojo/converters/ime", |
50 "//mojo/converters/input_events", | 49 "//mojo/converters/input_events", |
51 "//mojo/converters/network", | 50 "//mojo/converters/network", |
52 "//mojo/converters/surfaces", | 51 "//mojo/converters/surfaces", |
53 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
| 53 "//skia", |
54 "//third_party/icu", | 54 "//third_party/icu", |
55 "//ui/aura", | 55 "//ui/aura", |
56 "//ui/compositor", | 56 "//ui/compositor", |
57 "//ui/events", | 57 "//ui/events", |
58 "//ui/events:events_base", | 58 "//ui/events:events_base", |
59 "//ui/gfx", | 59 "//ui/gfx", |
60 "//ui/gfx/geometry", | 60 "//ui/gfx/geometry", |
61 "//ui/gl", | 61 "//ui/gl", |
62 "//ui/mojo/ime:interfaces_cpp_sources", | 62 "//ui/mojo/ime:interfaces_cpp_sources", |
63 "//ui/mojo/init", | 63 "//ui/mojo/init", |
(...skipping 14 matching lines...) Expand all Loading... |
78 | 78 |
79 repack("resources") { | 79 repack("resources") { |
80 sources = [ | 80 sources = [ |
81 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 81 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
82 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 82 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
83 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 83 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
84 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 84 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
85 ] | 85 ] |
86 output = "$root_out_dir/views_mus_resources.pak" | 86 output = "$root_out_dir/views_mus_resources.pak" |
87 deps = [ | 87 deps = [ |
| 88 "//ui/resources", |
88 "//ui/strings", | 89 "//ui/strings", |
89 "//ui/resources", | |
90 "//ui/views/resources", | 90 "//ui/views/resources", |
91 ] | 91 ] |
92 } | 92 } |
OLD | NEW |