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

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: Fix return build errors. 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "window_manager_application.h", 80 "window_manager_application.h",
81 ] 81 ]
82 82
83 deps = [ 83 deps = [
84 "//ash/wm/common:ash_wm_common", 84 "//ash/wm/common:ash_wm_common",
85 "//base", 85 "//base",
86 "//components/mus/common:mus_common", 86 "//components/mus/common:mus_common",
87 "//components/mus/public/cpp", 87 "//components/mus/public/cpp",
88 "//components/mus/public/interfaces", 88 "//components/mus/public/interfaces",
89 "//mash/session/public/interfaces", 89 "//mash/session/public/interfaces",
90 "//mash/wm/public/interfaces",
91 "//mash/wm/resources", 90 "//mash/wm/resources",
92 "//mojo/common:common_base", 91 "//mojo/common:common_base",
93 "//services/shell/public/cpp", 92 "//services/shell/public/cpp",
94 "//services/tracing/public/cpp", 93 "//services/tracing/public/cpp",
95 "//skia", 94 "//skia",
96 "//ui/aura", 95 "//ui/aura",
97 "//ui/events", 96 "//ui/events",
98 "//ui/events/mojo", 97 "//ui/events/mojo",
99 "//ui/gfx", 98 "//ui/gfx",
100 "//ui/gfx/geometry", 99 "//ui/gfx/geometry",
101 "//ui/gfx/geometry/mojo", 100 "//ui/gfx/geometry/mojo",
102 "//ui/mojo/display", 101 "//ui/mojo/display",
103 "//ui/resources", 102 "//ui/resources",
104 "//ui/strings", 103 "//ui/strings",
105 "//ui/views", 104 "//ui/views",
106 "//ui/views/mus:for_mojo_application", 105 "//ui/views/mus:for_mojo_application",
107 ] 106 ]
107
108 public_deps = [
109 "//mash/wm/public/interfaces",
110 ]
108 } 111 }
109 112
110 mojo_native_application("wm") { 113 mojo_native_application("wm") {
111 output_name = "desktop_wm" 114 output_name = "desktop_wm"
112 115
113 sources = [ 116 sources = [
114 "main.cc", 117 "main.cc",
115 ] 118 ]
116 119
117 deps = [ 120 deps = [
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 "//ui/gfx/geometry/mojo:interfaces", 202 "//ui/gfx/geometry/mojo:interfaces",
200 "//ui/gfx/geometry/mojo:util", 203 "//ui/gfx/geometry/mojo: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