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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 sources += [ | 73 sources += [ |
74 "external_popup_menu.cc", | 74 "external_popup_menu.cc", |
75 "external_popup_menu.h", | 75 "external_popup_menu.h", |
76 ] | 76 ] |
77 } | 77 } |
78 | 78 |
79 if (is_android) { | 79 if (is_android) { |
80 sources -= [ | 80 sources -= [ |
81 "accessibility/renderer_accessibility_focus_only.cc", | 81 "accessibility/renderer_accessibility_focus_only.cc", |
82 "media/audio_decoder.cc", | 82 "media/audio_decoder.cc", |
| 83 "media/crypto/encrypted_media_player_support_impl.cc", |
83 ] | 84 ] |
84 sources += [ | 85 sources += [ |
85 "external_popup_menu.cc", | 86 "external_popup_menu.cc", |
86 "external_popup_menu.h", | 87 "external_popup_menu.h", |
87 ] | 88 ] |
88 | 89 |
89 # Add back the Linux file which Android shares. | 90 # Add back the Linux file which Android shares. |
90 set_sources_assignment_filter([]) | 91 set_sources_assignment_filter([]) |
91 sources += [ | 92 sources += [ |
92 "render_view_linux.cc", | 93 "render_view_linux.cc", |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "media/crypto/pepper_cdm_wrapper_impl.h", | 179 "media/crypto/pepper_cdm_wrapper_impl.h", |
179 "media/crypto/ppapi_decryptor.cc", | 180 "media/crypto/ppapi_decryptor.cc", |
180 "media/crypto/ppapi_decryptor.h", | 181 "media/crypto/ppapi_decryptor.h", |
181 ] | 182 ] |
182 } | 183 } |
183 | 184 |
184 if (printing_mode == 1) { | 185 if (printing_mode == 1) { |
185 deps += [ "//printing" ] | 186 deps += [ "//printing" ] |
186 } | 187 } |
187 } | 188 } |
OLD | NEW |