| OLD | NEW |
| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "//webkit/common", | 44 "//webkit/common", |
| 45 "//webkit/common:storage", | 45 "//webkit/common:storage", |
| 46 "//webkit/common/gpu", | 46 "//webkit/common/gpu", |
| 47 # TODO(GYP) | 47 # TODO(GYP) |
| 48 #'../jingle/jingle.gyp:jingle_glue', | 48 #'../jingle/jingle.gyp:jingle_glue', |
| 49 #'../media/media.gyp:media', | 49 #'../media/media.gyp:media', |
| 50 #'../mojo/mojo.gyp:mojo_environment_chromium', | 50 #'../mojo/mojo.gyp:mojo_environment_chromium', |
| 51 #'../third_party/WebKit/public/blink.gyp:blink', | 51 #'../third_party/WebKit/public/blink.gyp:blink', |
| 52 #'../third_party/libjingle/libjingle.gyp:libjingle', | 52 #'../third_party/libjingle/libjingle.gyp:libjingle', |
| 53 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 53 #'../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
| 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 ] | 54 ] |
| 57 | 55 |
| 58 if (!enable_notifications) { | 56 if (!enable_notifications) { |
| 59 sources -= [ | 57 sources -= [ |
| 60 "notification_provider.cc", | 58 "notification_provider.cc", |
| 61 "active_notification_tracker.cc", | 59 "active_notification_tracker.cc", |
| 62 ] | 60 ] |
| 63 } | 61 } |
| 64 | 62 |
| 65 if (is_mac) { | 63 if (is_mac) { |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 ".", "//content") | 170 ".", "//content") |
| 173 } | 171 } |
| 174 | 172 |
| 175 if (!enable_pepper_cdms) { | 173 if (!enable_pepper_cdms) { |
| 176 sources -= [ | 174 sources -= [ |
| 177 "renderer/media/crypto/ppapi_decryptor.cc", | 175 "renderer/media/crypto/ppapi_decryptor.cc", |
| 178 "renderer/media/crypto/ppapi_decryptor.h", | 176 "renderer/media/crypto/ppapi_decryptor.h", |
| 179 ] | 177 ] |
| 180 } | 178 } |
| 181 } | 179 } |
| OLD | NEW |