| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 "webscrollbarbehavior_impl_gtkoraura.cc", | 86 "webscrollbarbehavior_impl_gtkoraura.cc", |
| 87 "webscrollbarbehavior_impl_gtkoraura.h", | 87 "webscrollbarbehavior_impl_gtkoraura.h", |
| 88 ] | 88 ] |
| 89 sources += [ | 89 sources += [ |
| 90 "external_popup_menu.cc", | 90 "external_popup_menu.cc", |
| 91 "external_popup_menu.h", | 91 "external_popup_menu.h", |
| 92 ] | 92 ] |
| 93 } | 93 } |
| 94 | 94 |
| 95 if (is_android) { | 95 if (is_android) { |
| 96 sources -= [ "media/audio_decoder.cc" ] | |
| 97 sources += [ | 96 sources += [ |
| 98 "external_popup_menu.cc", | 97 "external_popup_menu.cc", |
| 99 "external_popup_menu.h", | 98 "external_popup_menu.h", |
| 100 ] | 99 ] |
| 101 | 100 |
| 102 # Add back the Linux file which Android shares. | 101 # Add back the Linux file which Android shares. |
| 103 set_sources_assignment_filter([]) | 102 set_sources_assignment_filter([]) |
| 104 sources += [ "render_view_linux.cc" ] | 103 sources += [ "render_view_linux.cc" ] |
| 105 | 104 |
| 106 deps += [ | 105 deps += [ |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 "vr/vr_dispatcher.h", | 213 "vr/vr_dispatcher.h", |
| 215 "vr/vr_type_converters.cc", | 214 "vr/vr_type_converters.cc", |
| 216 "vr/vr_type_converters.h", | 215 "vr/vr_type_converters.h", |
| 217 ] | 216 ] |
| 218 } | 217 } |
| 219 | 218 |
| 220 if (use_seccomp_bpf) { | 219 if (use_seccomp_bpf) { |
| 221 defines += [ "USE_SECCOMP_BPF" ] | 220 defines += [ "USE_SECCOMP_BPF" ] |
| 222 } | 221 } |
| 223 } | 222 } |
| OLD | NEW |