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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 "webscrollbarbehavior_impl_gtkoraura.h", | 73 "webscrollbarbehavior_impl_gtkoraura.h", |
74 ] | 74 ] |
75 sources += [ | 75 sources += [ |
76 "external_popup_menu.cc", | 76 "external_popup_menu.cc", |
77 "external_popup_menu.h", | 77 "external_popup_menu.h", |
78 ] | 78 ] |
79 } | 79 } |
80 | 80 |
81 if (is_android) { | 81 if (is_android) { |
82 sources -= [ | 82 sources -= [ |
83 "accessibility/renderer_accessibility_focus_only.cc", | |
84 "media/audio_decoder.cc", | 83 "media/audio_decoder.cc", |
85 "media/crypto/encrypted_media_player_support_impl.cc", | 84 "media/crypto/encrypted_media_player_support_impl.cc", |
86 ] | 85 ] |
87 sources += [ | 86 sources += [ |
88 "external_popup_menu.cc", | 87 "external_popup_menu.cc", |
89 "external_popup_menu.h", | 88 "external_popup_menu.h", |
90 ] | 89 ] |
91 | 90 |
92 # Add back the Linux file which Android shares. | 91 # Add back the Linux file which Android shares. |
93 set_sources_assignment_filter([]) | 92 set_sources_assignment_filter([]) |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 | 189 |
191 if (enable_browser_cdms) { | 190 if (enable_browser_cdms) { |
192 sources += [ | 191 sources += [ |
193 "media/crypto/proxy_media_keys.cc", | 192 "media/crypto/proxy_media_keys.cc", |
194 "media/crypto/proxy_media_keys.h", | 193 "media/crypto/proxy_media_keys.h", |
195 "media/crypto/renderer_cdm_manager.cc", | 194 "media/crypto/renderer_cdm_manager.cc", |
196 "media/crypto/renderer_cdm_manager.h", | 195 "media/crypto/renderer_cdm_manager.h", |
197 ] | 196 ] |
198 } | 197 } |
199 } | 198 } |
OLD | NEW |