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

Side by Side Diff: components/mus/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 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("//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 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 ] 68 ]
69 } 69 }
70 } 70 }
71 71
72 source_set("lib") { 72 source_set("lib") {
73 sources = [ 73 sources = [
74 "mus_app.cc", 74 "mus_app.cc",
75 "mus_app.h", 75 "mus_app.h",
76 ] 76 ]
77 77
78 public_deps = [
79 "//components/mus/common:mus_common",
80 ]
78 deps = [ 81 deps = [
79 ":resources_100", 82 ":resources_100",
80 ":resources_200", 83 ":resources_200",
81 ":resources_strings", 84 ":resources_strings",
82 "//base", 85 "//base",
83 "//cc", 86 "//cc",
84 "//cc/surfaces", 87 "//cc/surfaces",
85 "//components/mus/common",
86 "//components/mus/gles2", 88 "//components/mus/gles2",
87 "//components/mus/public/interfaces", 89 "//components/mus/public/interfaces",
88 "//components/mus/surfaces", 90 "//components/mus/surfaces",
89 "//components/mus/ws:lib", 91 "//components/mus/ws:lib",
90 "//components/resource_provider/public/cpp", 92 "//components/resource_provider/public/cpp",
91 "//mojo/common:common_base", 93 "//mojo/common:common_base",
92 "//mojo/services/tracing/public/cpp", 94 "//mojo/services/tracing/public/cpp",
93 "//mojo/shell/public/cpp", 95 "//mojo/shell/public/cpp",
94 "//ui/events", 96 "//ui/events",
95 "//ui/gl:gl", 97 "//ui/gl:gl",
96 "//ui/platform_window:platform_impls", 98 "//ui/platform_window:platform_impls",
97 "//ui/platform_window:platform_window", 99 "//ui/platform_window:platform_window",
98 ] 100 ]
99 101
100 data_deps = [ 102 data_deps = [
101 "//components/resource_provider", 103 "//components/resource_provider",
102 ] 104 ]
103 105
104 if (use_x11) { 106 if (use_x11) {
105 public_configs = [ "//build/config/linux:x11" ] 107 public_configs = [ "//build/config/linux:x11" ]
106 public_deps = [ 108 public_deps += [ "//ui/events/platform/x11" ]
107 "//ui/events/platform/x11",
108 ]
109 } 109 }
110 110
111 if (use_ozone) { 111 if (use_ozone) {
112 deps += [ "//ui/ozone:ozone" ] 112 deps += [ "//ui/ozone:ozone" ]
113 } 113 }
114 } 114 }
115 115
116 repack("resources_strings") { 116 repack("resources_strings") {
117 sources = [ 117 sources = [
118 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 118 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
(...skipping 16 matching lines...) Expand all
135 135
136 repack("resources_200") { 136 repack("resources_200") {
137 sources = [ 137 sources = [
138 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak", 138 "$root_gen_dir/ui/resources/ui_resources_200_percent.pak",
139 ] 139 ]
140 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak" 140 output = "$root_out_dir/mus/resources/mus_app_resources_200.pak"
141 deps = [ 141 deps = [
142 "//ui/resources", 142 "//ui/resources",
143 ] 143 ]
144 } 144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698