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

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

Issue 317163002: Moving compositor_bindings from webkit to content (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removing nit 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
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.
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 "//webkit/common", 45 "//webkit/common",
46 "//webkit/common:storage", 46 "//webkit/common:storage",
47 "//webkit/common/gpu", 47 "//webkit/common/gpu",
48 # TODO(GYP) 48 # TODO(GYP)
49 #'../jingle/jingle.gyp:jingle_glue', 49 #'../jingle/jingle.gyp:jingle_glue',
50 #'../media/media.gyp:media', 50 #'../media/media.gyp:media',
51 #'../mojo/mojo.gyp:mojo_environment_chromium', 51 #'../mojo/mojo.gyp:mojo_environment_chromium',
52 #'../third_party/WebKit/public/blink.gyp:blink', 52 #'../third_party/WebKit/public/blink.gyp:blink',
53 #'../third_party/libjingle/libjingle.gyp:libjingle', 53 #'../third_party/libjingle/libjingle.gyp:libjingle',
54 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 54 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
55 #'../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_bindings',
56 #'../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support',
57 ] 55 ]
58 56
59 if (!enable_notifications) { 57 if (!enable_notifications) {
60 sources -= [ 58 sources -= [
61 "notification_provider.cc", 59 "notification_provider.cc",
62 "active_notification_tracker.cc", 60 "active_notification_tracker.cc",
63 ] 61 ]
64 } 62 }
65 63
66 if (is_mac) { 64 if (is_mac) {
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ".", "//content") 171 ".", "//content")
174 } 172 }
175 173
176 if (!enable_pepper_cdms) { 174 if (!enable_pepper_cdms) {
177 sources -= [ 175 sources -= [
178 "renderer/media/crypto/ppapi_decryptor.cc", 176 "renderer/media/crypto/ppapi_decryptor.cc",
179 "renderer/media/crypto/ppapi_decryptor.h", 177 "renderer/media/crypto/ppapi_decryptor.h",
180 ] 178 ]
181 } 179 }
182 } 180 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698