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

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

Issue 1922613003: Add blimp to root GN check_targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from brettw Created 4 years, 7 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
« content/app/BUILD.gn ('K') | « content/app/BUILD.gn ('k') | no next file » | 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 group("ppapi_plugin") { 5 group("ppapi_plugin") {
6 visibility = [ "//content/*" ] # This is an internal content API. 6 visibility = [ "//content/*" ] # This is an internal content API.
7 7
8 if (is_component_build) { 8 if (is_component_build) {
9 public_deps = [ 9 public_deps = [
10 "//content", 10 "//content",
11 ] 11 ]
12 } else { 12 } else {
13 public_deps = [ 13 public_deps = [
14 ":ppapi_plugin_sources", 14 ":ppapi_plugin_sources",
15 ] 15 ]
16 } 16 }
17 } 17 }
18 18
19 source_set("ppapi_plugin_sources") { 19 source_set("ppapi_plugin_sources") {
20 # Depend on via ":ppapi_plugin above. 20 # Depend on via ":ppapi_plugin above.
21 visibility = [ 21 visibility = [
22 ":ppapi_plugin", 22 ":ppapi_plugin",
23 "//content", # For the component build. 23 "//content", # For the component build.
24 "//content/app:both",
25 "//content/app:browser",
26 "//content/app:child",
24 "//gin", 27 "//gin",
25 ] 28 ]
26 29
27 sources = [ 30 sources = [
28 "broker_process_dispatcher.cc", 31 "broker_process_dispatcher.cc",
29 "broker_process_dispatcher.h", 32 "broker_process_dispatcher.h",
30 "plugin_process_dispatcher.cc", 33 "plugin_process_dispatcher.cc",
31 "plugin_process_dispatcher.h", 34 "plugin_process_dispatcher.h",
32 "ppapi_blink_platform_impl.cc", 35 "ppapi_blink_platform_impl.cc",
33 "ppapi_blink_platform_impl.h", 36 "ppapi_blink_platform_impl.h",
(...skipping 16 matching lines...) Expand all
50 "//ppapi/proxy:ipc", 53 "//ppapi/proxy:ipc",
51 "//services/shell/public/interfaces", 54 "//services/shell/public/interfaces",
52 "//skia", 55 "//skia",
53 "//third_party/WebKit/public:blink", 56 "//third_party/WebKit/public:blink",
54 "//third_party/icu", 57 "//third_party/icu",
55 "//ui/base", 58 "//ui/base",
56 "//ui/gfx", 59 "//ui/gfx",
57 "//ui/gfx/geometry", 60 "//ui/gfx/geometry",
58 ] 61 ]
59 } 62 }
OLDNEW
« content/app/BUILD.gn ('K') | « content/app/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698