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

Unified Diff: content/renderer/BUILD.gn

Issue 419613002: Fix GN linking issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/BUILD.gn
diff --git a/content/renderer/BUILD.gn b/content/renderer/BUILD.gn
index 1b83c38ceabfcbff6463400d7df47a781f632d43..a35744205e34ea61f92bd6d30034e456d029212e 100644
--- a/content/renderer/BUILD.gn
+++ b/content/renderer/BUILD.gn
@@ -27,6 +27,8 @@ source_set("renderer") {
"//content:resources",
"//content/common:mojo_bindings",
"//gin",
+ "//media",
+ "//mojo/bindings/js",
"//mojo/environment:chromium",
"//mojo/public/js/bindings",
"//mojo/public/interfaces/service_provider",
@@ -34,7 +36,7 @@ source_set("renderer") {
"//skia",
"//third_party/icu",
"//third_party/npapi",
- "//third_party/WebKit/public:blink_headers",
+ "//third_party/WebKit/public:blink",
"//third_party/widevine/cdm:version_h",
"//ui/accessibility",
"//ui/events:dom4_keycode_converter",
@@ -45,11 +47,8 @@ source_set("renderer") {
"//webkit/common",
"//webkit/common:storage",
"//webkit/common/gpu",
- # TODO(GYP)
- #'../jingle/jingle.gyp:jingle_glue',
- #'../media/media.gyp:media',
- #'../third_party/WebKit/public/blink.gyp:blink',
- #'../third_party/libjingle/libjingle.gyp:libjingle',
+ #'../jingle/jingle.gyp:jingle_glue', TODO(GYP)
+ #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP)
]
if (!enable_notifications) {
@@ -89,8 +88,7 @@ source_set("renderer") {
deps += [
"//third_party/android_tools:cpu_features",
- # TODO(GYP)
- #"//third_party/libphonenumber",
+ "//third_party/libphonenumber",
]
} else {
sources -= [
@@ -130,12 +128,11 @@ source_set("renderer") {
".", "//content")
deps += [
"//crypto",
- # TODO(GYP)
- #"../third_party/libjingle/libjingle.gyp:libjingle_webrtc",
- #"../third_party/libjingle/libjingle.gyp:libpeerconnection",
- #"../third_party/webrtc/modules/modules.gyp:audio_device",
- #"../third_party/webrtc/modules/modules.gyp:audio_processing",
- #"//third_party/libyuv",
+ "//third_party/libyuv",
+ #"../third_party/libjingle/libjingle.gyp:libjingle_webrtc", TODO(GYP)
+ #"../third_party/libjingle/libjingle.gyp:libpeerconnection", TODO(GYP)
+ #"../third_party/webrtc/modules/modules.gyp:audio_device", TODO(GYP)
+ #"../third_party/webrtc/modules/modules.gyp:audio_processing", TODO(GYP)
]
} else {
sources += [
« no previous file with comments | « content/common/BUILD.gn ('k') | content/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698