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

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: 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 23 matching lines...) Expand all
34 "//net", 34 "//net",
35 "//skia", 35 "//skia",
36 "//third_party/icu", 36 "//third_party/icu",
37 "//third_party/npapi", 37 "//third_party/npapi",
38 "//third_party/WebKit/public:blink_headers", 38 "//third_party/WebKit/public:blink_headers",
39 "//ui/accessibility", 39 "//ui/accessibility",
40 "//ui/events:dom4_keycode_converter", 40 "//ui/events:dom4_keycode_converter",
41 "//ui/native_theme", 41 "//ui/native_theme",
42 "//ui/surface", 42 "//ui/surface",
43 # TODO(GYP) 43 # TODO(GYP)
44 #'renderer/compositor_bindings/compositor_bindings.gyp:content_compositor_bi ndings',
45 #'renderer/compositor_bindings/compositor_bindings.gyp:content_compositor_su pport',
44 #'../jingle/jingle.gyp:jingle_glue', 46 #'../jingle/jingle.gyp:jingle_glue',
45 #'../media/media.gyp:media', 47 #'../media/media.gyp:media',
46 #'../mojo/mojo.gyp:mojo_environment_chromium', 48 #'../mojo/mojo.gyp:mojo_environment_chromium',
47 #'../third_party/WebKit/public/blink.gyp:blink', 49 #'../third_party/WebKit/public/blink.gyp:blink',
48 #'../third_party/libjingle/libjingle.gyp:libjingle', 50 #'../third_party/libjingle/libjingle.gyp:libjingle',
49 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', 51 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h',
50 #'../v8/tools/gyp/v8.gyp:v8', 52 #'../v8/tools/gyp/v8.gyp:v8',
51 #'../webkit/child/webkit_child.gyp:webkit_child', 53 #'../webkit/child/webkit_child.gyp:webkit_child',
52 #'../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 54 #'../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
53 #'../webkit/common/webkit_common.gyp:webkit_common', 55 #'../webkit/common/webkit_common.gyp:webkit_common',
54 #'../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_bindings',
55 #'../webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_comp ositor_support',
56 #'../webkit/storage_common.gyp:webkit_storage_common', 56 #'../webkit/storage_common.gyp:webkit_storage_common',
57 ] 57 ]
58 58
59 if (!enable_notifications) { 59 if (!enable_notifications) {
60 sources -= [ 60 sources -= [
61 "notification_provider.cc", 61 "notification_provider.cc",
62 "active_notification_tracker.cc", 62 "active_notification_tracker.cc",
63 ] 63 ]
64 } 64 }
65 65
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 ".", "//content") 173 ".", "//content")
174 } 174 }
175 175
176 if (!enable_pepper_cdms) { 176 if (!enable_pepper_cdms) {
177 sources -= [ 177 sources -= [
178 "renderer/media/crypto/ppapi_decryptor.cc", 178 "renderer/media/crypto/ppapi_decryptor.cc",
179 "renderer/media/crypto/ppapi_decryptor.h", 179 "renderer/media/crypto/ppapi_decryptor.h",
180 ] 180 ]
181 } 181 }
182 } 182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698