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

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

Issue 335693004: Hook up content/browser compile in GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « content/public/renderer/BUILD.gn ('k') | third_party/protobuf/proto_library.gni » ('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/renderer/renderer.gni") 7 import("//content/renderer/renderer.gni")
8 8
9 source_set("renderer") { 9 source_set("renderer") {
10 # Only targets in the content tree can depend directly on this target. 10 # Only targets in the content tree can depend directly on this target.
11 visibility = [ "//content/*" ] 11 visibility = [ "//content/*" ]
12 12
13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, 13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources,
14 ".", "//content") 14 ".", "//content")
15 15
16 configs += [ 16 configs += [
17 "//content:content_implementation", 17 "//content:content_implementation",
18 "//content:libjingle_stub_config", 18 "//content:libjingle_stub_config",
19 "//content:v8_stub_config",
20 "//content:widevine_stub_config", 19 "//content:widevine_stub_config",
21 ] 20 ]
22 21
23 deps = [ 22 deps = [
24 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but 23 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but
25 # those don't cross component boundaries. 24 # those don't cross component boundaries.
26 "//crypto:platform", 25 "//crypto:platform",
27 26
28 "//base/allocator", 27 "//base/allocator",
29 "//content:resources", 28 "//content:resources",
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ".", "//content") 172 ".", "//content")
174 } 173 }
175 174
176 if (!enable_pepper_cdms) { 175 if (!enable_pepper_cdms) {
177 sources -= [ 176 sources -= [
178 "renderer/media/crypto/ppapi_decryptor.cc", 177 "renderer/media/crypto/ppapi_decryptor.cc",
179 "renderer/media/crypto/ppapi_decryptor.h", 178 "renderer/media/crypto/ppapi_decryptor.h",
180 ] 179 ]
181 } 180 }
182 } 181 }
OLDNEW
« no previous file with comments | « content/public/renderer/BUILD.gn ('k') | third_party/protobuf/proto_library.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698