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

Side by Side Diff: mash/wm/BUILD.gn

Issue 2014013002: Add SkBitmap StructTraits for skia::mojo::Bitmap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add mojo/public/cpp/bindings typemap deps. Created 4 years, 6 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
OLDNEW
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("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//mojo/public/mojo_application_manifest.gni") 7 import("//mojo/public/mojo_application_manifest.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 "window_manager_application.h", 79 "window_manager_application.h",
80 ] 80 ]
81 81
82 deps = [ 82 deps = [
83 "//ash/wm/common:ash_wm_common", 83 "//ash/wm/common:ash_wm_common",
84 "//base", 84 "//base",
85 "//components/mus/common:mus_common", 85 "//components/mus/common:mus_common",
86 "//components/mus/public/cpp", 86 "//components/mus/public/cpp",
87 "//components/mus/public/interfaces", 87 "//components/mus/public/interfaces",
88 "//mash/session/public/interfaces", 88 "//mash/session/public/interfaces",
89 "//mash/wm/public/interfaces",
90 "//mash/wm/resources", 89 "//mash/wm/resources",
91 "//mojo/common:common_base", 90 "//mojo/common:common_base",
92 "//mojo/converters/geometry", 91 "//mojo/converters/geometry",
93 "//mojo/converters/input_events", 92 "//mojo/converters/input_events",
94 "//services/shell/public/cpp", 93 "//services/shell/public/cpp",
95 "//services/tracing/public/cpp", 94 "//services/tracing/public/cpp",
96 "//skia", 95 "//skia",
97 "//ui/aura", 96 "//ui/aura",
98 "//ui/events", 97 "//ui/events",
99 "//ui/gfx", 98 "//ui/gfx",
100 "//ui/gfx/geometry", 99 "//ui/gfx/geometry",
101 "//ui/mojo/display", 100 "//ui/mojo/display",
102 "//ui/resources", 101 "//ui/resources",
103 "//ui/strings", 102 "//ui/strings",
104 "//ui/views", 103 "//ui/views",
105 "//ui/views/mus:for_mojo_application", 104 "//ui/views/mus:for_mojo_application",
106 ] 105 ]
106
107 public_deps = [
108 "//mash/wm/public/interfaces",
109 ]
107 } 110 }
108 111
109 mojo_native_application("wm") { 112 mojo_native_application("wm") {
110 output_name = "desktop_wm" 113 output_name = "desktop_wm"
111 114
112 sources = [ 115 sources = [
113 "main.cc", 116 "main.cc",
114 ] 117 ]
115 118
116 deps = [ 119 deps = [
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "//ui/mojo/geometry:interfaces", 202 "//ui/mojo/geometry:interfaces",
200 "//ui/mojo/geometry:util", 203 "//ui/mojo/geometry:util",
201 "//ui/views/mus", 204 "//ui/views/mus",
202 ] 205 ]
203 206
204 data_deps = [ 207 data_deps = [
205 ":wm", 208 ":wm",
206 "//mash/quick_launch", 209 "//mash/quick_launch",
207 ] 210 ]
208 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698