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

Side by Side Diff: components/mus/public/cpp/BUILD.gn

Issue 1695783002: IPC::ParamTraits for ui::Event (towards ui::Events over mojo IPC) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicate MUS_COMMON_EXPORT in header and impl Created 4 years, 9 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 source_set("cpp") { 5 source_set("cpp") {
6 sources = [ 6 sources = [
7 "context_provider.h", 7 "context_provider.h",
8 "event_matcher.h", 8 "event_matcher.h",
9 "input_event_handler.h", 9 "input_event_handler.h",
10 "lib/context_provider.cc", 10 "lib/context_provider.cc",
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 public_deps = [ 42 public_deps = [
43 "../interfaces", 43 "../interfaces",
44 "//mojo/services/network/public/interfaces", 44 "//mojo/services/network/public/interfaces",
45 ] 45 ]
46 46
47 deps = [ 47 deps = [
48 "//base", 48 "//base",
49 "//cc", 49 "//cc",
50 "//cc/surfaces", 50 "//cc/surfaces",
51 "//cc/surfaces:surface_id", 51 "//cc/surfaces:surface_id",
52 "//components/mus/common", 52 "//components/mus/common:mus_common",
53 "//mojo/converters/geometry", 53 "//mojo/converters/geometry",
54 "//mojo/converters/surfaces", 54 "//mojo/converters/surfaces",
55 "//mojo/gles2", 55 "//mojo/gles2",
56 "//mojo/gpu:mojo_gles2_implementation", 56 "//mojo/gpu:mojo_gles2_implementation",
57 "//mojo/public/cpp/bindings:bindings", 57 "//mojo/public/cpp/bindings:bindings",
58 "//mojo/public/cpp/environment", 58 "//mojo/public/cpp/environment",
59 "//mojo/public/cpp/system", 59 "//mojo/public/cpp/system",
60 "//mojo/shell/public/cpp", 60 "//mojo/shell/public/cpp",
61 "//mojo/shell/public/interfaces", 61 "//mojo/shell/public/interfaces",
62 "//ui/gfx/geometry", 62 "//ui/gfx/geometry",
63 "//ui/mojo/geometry:interfaces", 63 "//ui/mojo/geometry:interfaces",
64 ] 64 ]
65 65
66 data_deps = [ 66 data_deps = [
67 "//components/mus", 67 "//components/mus",
68 ] 68 ]
69 69
70 if (is_component_build) { 70 if (is_component_build) {
71 deps += [ "//mojo/gles2" ] 71 deps += [ "//mojo/gles2" ]
72 } 72 }
73 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698