| 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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//ui/base", | 55 "//ui/base", |
| 56 "//ui/events:events_base", | 56 "//ui/events:events_base", |
| 57 "//ui/events:dom4_keycode_converter", | 57 "//ui/events:dom4_keycode_converter", |
| 58 "//ui/gl", | 58 "//ui/gl", |
| 59 "//ui/native_theme", | 59 "//ui/native_theme", |
| 60 "//ui/surface", | 60 "//ui/surface", |
| 61 "//v8", | 61 "//v8", |
| 62 "//webkit/common/gpu", | 62 "//webkit/common/gpu", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 if (!enable_notifications) { | |
| 66 sources -= [ | |
| 67 "notification_provider.cc", | |
| 68 "active_notification_tracker.cc", | |
| 69 ] | |
| 70 } | |
| 71 | |
| 72 if (is_mac) { | 65 if (is_mac) { |
| 73 sources -= [ | 66 sources -= [ |
| 74 "webscrollbarbehavior_impl_gtkoraura.cc", | 67 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 75 "webscrollbarbehavior_impl_gtkoraura.h", | 68 "webscrollbarbehavior_impl_gtkoraura.h", |
| 76 ] | 69 ] |
| 77 sources += [ | 70 sources += [ |
| 78 "external_popup_menu.cc", | 71 "external_popup_menu.cc", |
| 79 "external_popup_menu.h", | 72 "external_popup_menu.h", |
| 80 ] | 73 ] |
| 81 } | 74 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 183 |
| 191 if (enable_browser_cdms) { | 184 if (enable_browser_cdms) { |
| 192 sources += [ | 185 sources += [ |
| 193 "media/crypto/proxy_media_keys.cc", | 186 "media/crypto/proxy_media_keys.cc", |
| 194 "media/crypto/proxy_media_keys.h", | 187 "media/crypto/proxy_media_keys.h", |
| 195 "media/crypto/renderer_cdm_manager.cc", | 188 "media/crypto/renderer_cdm_manager.cc", |
| 196 "media/crypto/renderer_cdm_manager.h", | 189 "media/crypto/renderer_cdm_manager.h", |
| 197 ] | 190 ] |
| 198 } | 191 } |
| 199 } | 192 } |
| OLD | NEW |