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

Side by Side Diff: components/mus/ws/BUILD.gn

Issue 2014233002: Implement cc::SurfaceId StructTraits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.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 9
10 source_set("lib") { 10 source_set("lib") {
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 "window_tree_binding.h", 85 "window_tree_binding.h",
86 "window_tree_factory.cc", 86 "window_tree_factory.cc",
87 "window_tree_factory.h", 87 "window_tree_factory.h",
88 "window_tree_host_factory.cc", 88 "window_tree_host_factory.cc",
89 "window_tree_host_factory.h", 89 "window_tree_host_factory.h",
90 ] 90 ]
91 91
92 deps = [ 92 deps = [
93 "//base", 93 "//base",
94 "//cc", 94 "//cc",
95 "//cc/ipc:interfaces",
Ken Rockot(use gerrit already) 2016/05/26 16:58:22 Please fix these dependencies while you're here.
Fady Samuel 2016/05/26 17:45:09 I've moved the interfaces over. I haven't done an
Ken Rockot(use gerrit already) 2016/05/26 17:55:10 I'd kind of prefer that you did. It doesn't seem l
Fady Samuel 2016/05/26 19:54:29 Seems like everything should be a public dep here.
95 "//cc/surfaces", 96 "//cc/surfaces",
96 "//cc/surfaces:surface_id", 97 "//cc/surfaces:surface_id",
97 "//components/mus/common:mus_common", 98 "//components/mus/common:mus_common",
98 "//components/mus/gles2", 99 "//components/mus/gles2",
99 "//components/mus/public/interfaces", 100 "//components/mus/public/interfaces",
100 "//components/mus/surfaces", 101 "//components/mus/surfaces",
101 "//mojo/common:common_base", 102 "//mojo/common:common_base",
102 "//mojo/converters/geometry", 103 "//mojo/converters/geometry",
103 "//mojo/converters/ime", 104 "//mojo/converters/ime",
104 "//mojo/converters/input_events", 105 "//mojo/converters/input_events",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 237
237 data_deps = [ 238 data_deps = [
238 ":mus_ws_unittests_app_manifest", 239 ":mus_ws_unittests_app_manifest",
239 ] 240 ]
240 } 241 }
241 242
242 mojo_application_manifest("mus_ws_unittests_app_manifest") { 243 mojo_application_manifest("mus_ws_unittests_app_manifest") {
243 application_name = "mus_ws_unittests_app" 244 application_name = "mus_ws_unittests_app"
244 source = "mus_ws_unittests_app_manifest.json" 245 source = "mus_ws_unittests_app_manifest.json"
245 } 246 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698