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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//content/child/child.gni") | 8 import("//content/child/child.gni") |
9 | 9 |
10 source_set("child") { | 10 source_set("child") { |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 } | 125 } |
126 | 126 |
127 if (use_aura && is_mac) { | 127 if (use_aura && is_mac) { |
128 # This file is already excluded on non-Mac. | 128 # This file is already excluded on non-Mac. |
129 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] | 129 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] |
130 } | 130 } |
131 | 131 |
132 if (is_win || !use_aura) { | 132 if (is_win || !use_aura) { |
133 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] | 133 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] |
134 } | 134 } |
| 135 |
| 136 if (!use_ozone) { |
| 137 sources -= [ |
| 138 "child_native_pixmap_manager_ozone.cc", |
| 139 "child_native_pixmap_manager_ozone.h", |
| 140 ] |
| 141 } |
135 } | 142 } |
OLD | NEW |