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

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

Issue 1104973002: Fix //content/test:test_support under component builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« no previous file with comments | « content/gpu/BUILD.gn ('k') | content/test/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 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("ppapi_plugin") { 5 group("ppapi_plugin") {
6 visibility = [ "//content/*" ]
7
8 if (is_component_build) {
9 public_deps = [
10 "//content",
11 ]
12 } else {
13 public_deps = [
14 ":ppapi_plugin_sources",
15 ]
16 }
17 }
18
19 source_set("ppapi_plugin_sources") {
6 visibility = [ "//content/*" ] 20 visibility = [ "//content/*" ]
7 21
8 sources = [ 22 sources = [
9 "broker_process_dispatcher.cc", 23 "broker_process_dispatcher.cc",
10 "broker_process_dispatcher.h", 24 "broker_process_dispatcher.h",
11 "plugin_process_dispatcher.cc", 25 "plugin_process_dispatcher.cc",
12 "plugin_process_dispatcher.h", 26 "plugin_process_dispatcher.h",
13 "ppapi_blink_platform_impl.cc", 27 "ppapi_blink_platform_impl.cc",
14 "ppapi_blink_platform_impl.h", 28 "ppapi_blink_platform_impl.h",
15 "ppapi_broker_main.cc", 29 "ppapi_broker_main.cc",
(...skipping 12 matching lines...) Expand all
28 "//ppapi/proxy:ipc", 42 "//ppapi/proxy:ipc",
29 "//skia", 43 "//skia",
30 "//third_party/icu", 44 "//third_party/icu",
31 "//third_party/WebKit/public:blink", 45 "//third_party/WebKit/public:blink",
32 "//third_party/mojo/src/mojo/public/interfaces/application", 46 "//third_party/mojo/src/mojo/public/interfaces/application",
33 "//ui/base", 47 "//ui/base",
34 "//ui/gfx", 48 "//ui/gfx",
35 "//ui/gfx/geometry", 49 "//ui/gfx/geometry",
36 ] 50 ]
37 } 51 }
OLDNEW
« no previous file with comments | « content/gpu/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698