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

Side by Side Diff: content/common/BUILD.gn

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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
« no previous file with comments | « content/child/process_control_impl.h ('k') | content/common/application_setup.mojom » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 "//third_party/WebKit/public:blink_headers", 153 "//third_party/WebKit/public:blink_headers",
154 ] 154 ]
155 deps = [ 155 deps = [
156 "//base", 156 "//base",
157 "//build/util:webkit_version", 157 "//build/util:webkit_version",
158 "//components/mus/public/interfaces", 158 "//components/mus/public/interfaces",
159 "//components/tracing", 159 "//components/tracing",
160 "//components/tracing:startup_tracing", 160 "//components/tracing:startup_tracing",
161 "//gpu/command_buffer/client:gles2_interface", 161 "//gpu/command_buffer/client:gles2_interface",
162 "//gpu/command_buffer/common:gles2_utils", 162 "//gpu/command_buffer/common:gles2_utils",
163 "//mojo/application/public/cpp",
164 "//mojo/converters/network", 163 "//mojo/converters/network",
165 "//mojo/runner/child:lib", 164 "//mojo/runner/child:lib",
165 "//mojo/shell/public/cpp",
166 "//net", 166 "//net",
167 "//skia", 167 "//skia",
168 "//third_party/icu", 168 "//third_party/icu",
169 "//third_party/libjingle", 169 "//third_party/libjingle",
170 "//ui/accessibility", 170 "//ui/accessibility",
171 "//ui/base", 171 "//ui/base",
172 "//ui/base/ime", 172 "//ui/base/ime",
173 "//ui/events/ipc:events_ipc", 173 "//ui/events/ipc:events_ipc",
174 "//ui/gfx", 174 "//ui/gfx",
175 "//ui/gfx/geometry", 175 "//ui/gfx/geometry",
(...skipping 16 matching lines...) Expand all
192 "//gpu/command_buffer/client:gl_in_process_context", 192 "//gpu/command_buffer/client:gl_in_process_context",
193 "//gpu/command_buffer/client:gles2_c_lib", 193 "//gpu/command_buffer/client:gles2_c_lib",
194 "//gpu/command_buffer/client:gles2_cmd_helper", 194 "//gpu/command_buffer/client:gles2_cmd_helper",
195 "//gpu/command_buffer/client:gles2_implementation", 195 "//gpu/command_buffer/client:gles2_implementation",
196 "//gpu/command_buffer/service", 196 "//gpu/command_buffer/service",
197 "//gpu/ipc", 197 "//gpu/ipc",
198 "//gpu/skia_bindings", 198 "//gpu/skia_bindings",
199 "//media", 199 "//media",
200 "//media:shared_memory_support", 200 "//media:shared_memory_support",
201 "//media/midi", 201 "//media/midi",
202 "//mojo/application/public/interfaces",
203 "//mojo/common:common_base", 202 "//mojo/common:common_base",
204 "//mojo/environment:chromium", 203 "//mojo/environment:chromium",
204 "//mojo/shell/public/interfaces",
205 "//sandbox", 205 "//sandbox",
206 "//storage/common", 206 "//storage/common",
207 "//third_party/WebKit/public:blink", 207 "//third_party/WebKit/public:blink",
208 "//third_party/mojo/src/mojo/edk/system", 208 "//third_party/mojo/src/mojo/edk/system",
209 "//ui/gl", 209 "//ui/gl",
210 ] 210 ]
211 } 211 }
212 212
213 defines = [] 213 defines = []
214 include_dirs = [] 214 include_dirs = []
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 "service_worker/embedded_worker_setup.mojom", 541 "service_worker/embedded_worker_setup.mojom",
542 "vr_service.mojom", 542 "vr_service.mojom",
543 "wake_lock_service.mojom", 543 "wake_lock_service.mojom",
544 ] 544 ]
545 545
546 import_dirs = [ "//mojo/services" ] 546 import_dirs = [ "//mojo/services" ]
547 547
548 deps = [ 548 deps = [
549 "//components/mus/public/interfaces", 549 "//components/mus/public/interfaces",
550 "//content/public/common:mojo_bindings", 550 "//content/public/common:mojo_bindings",
551 "//mojo/application/public/interfaces", 551 "//mojo/shell/public/interfaces",
552 "//skia/public/interfaces", 552 "//skia/public/interfaces",
553 "//ui/mojo/geometry:interfaces", 553 "//ui/mojo/geometry:interfaces",
554 ] 554 ]
555 } 555 }
OLDNEW
« no previous file with comments | « content/child/process_control_impl.h ('k') | content/common/application_setup.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698