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

Side by Side Diff: ppapi/host/BUILD.gn

Issue 2767193005: Fix public dependencies on //ipc (Closed)
Patch Set: Created 3 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
« no previous file with comments | « gpu/ipc/common/BUILD.gn ('k') | ppapi/proxy/BUILD.gn » ('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 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 component("host") { 5 component("host") {
6 output_name = "ppapi_host" 6 output_name = "ppapi_host"
7 7
8 sources = [ 8 sources = [
9 "dispatch_host_message.h", 9 "dispatch_host_message.h",
10 "error_conversion.cc", 10 "error_conversion.cc",
(...skipping 13 matching lines...) Expand all
24 "resource_message_filter.cc", 24 "resource_message_filter.cc",
25 "resource_message_filter.h", 25 "resource_message_filter.h",
26 "resource_message_handler.cc", 26 "resource_message_handler.cc",
27 "resource_message_handler.h", 27 "resource_message_handler.h",
28 ] 28 ]
29 29
30 defines = [ "PPAPI_HOST_IMPLEMENTATION" ] 30 defines = [ "PPAPI_HOST_IMPLEMENTATION" ]
31 31
32 deps = [ 32 deps = [
33 "//base", 33 "//base",
34 "//ipc",
35 "//media:shared_memory_support", 34 "//media:shared_memory_support",
36 "//ppapi/c", 35 "//ppapi/c",
37 "//ppapi/proxy:ipc", 36 "//ppapi/proxy:ipc",
38 "//ppapi/shared_impl", 37 "//ppapi/shared_impl",
39 "//ui/events:events_base", 38 "//ui/events:events_base",
40 "//ui/surface", 39 "//ui/surface",
41 "//url", 40 "//url",
42 ] 41 ]
42
43 public_deps = [
44 "//ipc",
45 ]
43 } 46 }
OLDNEW
« no previous file with comments | « gpu/ipc/common/BUILD.gn ('k') | ppapi/proxy/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698