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

Side by Side Diff: content/public/renderer/BUILD.gn

Issue 1462753002: Define MOJO_SHELL_CLIENT uniformly across content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 1 month 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/public/common/BUILD.gn ('k') | content/renderer/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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//content/renderer/renderer.gni") 6 import("//content/renderer/renderer.gni")
7 7
8 # See //content/BUILD.gn for how this works. 8 # See //content/BUILD.gn for how this works.
9 group("renderer") { 9 group("renderer") {
10 if (is_component_build) { 10 if (is_component_build) {
11 public_deps = [ 11 public_deps = [
12 "//content", 12 "//content",
13 ] 13 ]
14 } else { 14 } else {
15 public_deps = [ 15 public_deps = [
16 ":renderer_sources", 16 ":renderer_sources",
17 ] 17 ]
18 } 18 }
19 } 19 }
20 20
21 source_set("renderer_sources") { 21 source_set("renderer_sources") {
22 visibility = [ "//content/*" ] 22 visibility = [ "//content/*" ]
23 23
24 sources = rebase_path(content_renderer_gypi_values.public_renderer_sources, 24 sources = rebase_path(content_renderer_gypi_values.public_renderer_sources,
25 ".", 25 ".",
26 "//content") 26 "//content")
27 27
28 configs += [ "//content:content_implementation" ] 28 configs += [
29 "//content:content_implementation",
30 "//content/public/common:mojo_shell_client",
31 ]
29 32
30 deps = [ 33 deps = [
31 "//content/public/common:common_sources", 34 "//content/public/common:common_sources",
32 "//content/renderer", 35 "//content/renderer",
33 "//skia", 36 "//skia",
34 "//third_party/libjingle", 37 "//third_party/libjingle",
35 "//third_party/WebKit/public:blink_headers", 38 "//third_party/WebKit/public:blink_headers",
36 "//third_party/widevine/cdm:version_h", 39 "//third_party/widevine/cdm:version_h",
37 "//ui/gfx", 40 "//ui/gfx",
38 "//v8", 41 "//v8",
(...skipping 13 matching lines...) Expand all
52 deps += [ "//third_party/webrtc" ] 55 deps += [ "//third_party/webrtc" ]
53 } 56 }
54 57
55 if (enable_plugins) { 58 if (enable_plugins) {
56 sources += 59 sources +=
57 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources, 60 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources,
58 ".", 61 ".",
59 "//content") 62 "//content")
60 } 63 }
61 } 64 }
OLDNEW
« no previous file with comments | « content/public/common/BUILD.gn ('k') | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698