Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(172)

Side by Side Diff: ui/views/mus/BUILD.gn

Issue 1942473002: Eliminate mojo:resource_provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | ui/views/mus/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.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("//testing/test.gni") 9 import("//testing/test.gni")
10 import("//tools/grit/repack.gni") 10 import("//tools/grit/repack.gni")
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 deps = [ 51 deps = [
52 "//base", 52 "//base",
53 "//base:i18n", 53 "//base:i18n",
54 "//base/third_party/dynamic_annotations", 54 "//base/third_party/dynamic_annotations",
55 "//cc", 55 "//cc",
56 "//cc/surfaces", 56 "//cc/surfaces",
57 "//components/bitmap_uploader", 57 "//components/bitmap_uploader",
58 "//components/mus/gles2:lib", 58 "//components/mus/gles2:lib",
59 "//components/mus/public/cpp", 59 "//components/mus/public/cpp",
60 "//components/mus/public/interfaces", 60 "//components/mus/public/interfaces",
61 "//components/resource_provider/public/cpp",
62 "//components/resource_provider/public/interfaces",
63 "//mojo/converters/geometry", 61 "//mojo/converters/geometry",
64 "//mojo/converters/ime", 62 "//mojo/converters/ime",
65 "//mojo/converters/input_events", 63 "//mojo/converters/input_events",
66 "//mojo/converters/surfaces", 64 "//mojo/converters/surfaces",
67 "//mojo/platform_handle:for_component", 65 "//mojo/platform_handle:for_component",
68 "//mojo/public/c/system:for_component", 66 "//mojo/public/c/system:for_component",
69 "//mojo/public/cpp/bindings", 67 "//mojo/public/cpp/bindings",
68 "//services/catalog/public/cpp",
70 "//services/shell/public/cpp", 69 "//services/shell/public/cpp",
71 "//services/shell/public/interfaces", 70 "//services/shell/public/interfaces",
72 "//skia", 71 "//skia",
73 "//third_party/icu", 72 "//third_party/icu",
74 "//ui/aura", 73 "//ui/aura",
75 "//ui/compositor", 74 "//ui/compositor",
76 "//ui/events", 75 "//ui/events",
77 "//ui/events:events_base", 76 "//ui/events:events_base",
78 "//ui/events/devices", 77 "//ui/events/devices",
79 "//ui/gfx", 78 "//ui/gfx",
80 "//ui/gfx/geometry", 79 "//ui/gfx/geometry",
81 "//ui/gl", 80 "//ui/gl",
82 "//ui/mojo/ime:interfaces_cpp_sources", 81 "//ui/mojo/ime:interfaces_cpp_sources",
83 "//ui/native_theme", 82 "//ui/native_theme",
84 "//ui/platform_window", 83 "//ui/platform_window",
85 "//ui/views", 84 "//ui/views",
86 "//ui/wm", 85 "//ui/wm",
87 ] 86 ]
88 87
89 data_deps = [
90 "//components/resource_provider",
91 ]
92
93 if (is_linux && !is_android) { 88 if (is_linux && !is_android) {
94 deps += [ "//components/font_service/public/cpp" ] 89 deps += [ "//components/font_service/public/cpp" ]
95 data_deps += [ "//components/font_service" ] 90 data_deps = [
91 "//components/font_service",
92 ]
96 } 93 }
97 } 94 }
98 95
99 repack("resources") { 96 repack("resources") {
100 sources = [ 97 sources = [
101 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 98 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
102 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 99 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
103 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", 100 "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
104 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", 101 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak",
105 ] 102 ]
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 } 230 }
234 231
235 group("for_component") { 232 group("for_component") {
236 public_deps = [ 233 public_deps = [
237 ":mus", 234 ":mus",
238 ] 235 ]
239 deps = [ 236 deps = [
240 "//mojo/gles2", 237 "//mojo/gles2",
241 ] 238 ]
242 } 239 }
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | ui/views/mus/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698