Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1297)

Side by Side Diff: content/child/BUILD.gn

Issue 1248713002: ozone: ClientPixmapManager passes VGEM fd from browser to renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rename to ClientNativePixmapFactory Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 } 127 }
128 128
129 if (use_aura && is_mac) { 129 if (use_aura && is_mac) {
130 # This file is already excluded on non-Mac. 130 # This file is already excluded on non-Mac.
131 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ] 131 sources -= [ "npapi/webplugin_delegate_impl_mac.mm" ]
132 } 132 }
133 133
134 if (is_win || !use_aura) { 134 if (is_win || !use_aura) {
135 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ] 135 sources -= [ "npapi/webplugin_delegate_impl_aura.cc" ]
136 } 136 }
137
138 if (!use_ozone) {
139 sources -= [
140 "child_client_native_pixmap_factory_message_filter_ozone.cc",
141 "child_client_native_pixmap_factory_message_filter_ozone.h",
142 "child_client_native_pixmap_factory_ozone.cc",
143 "child_client_native_pixmap_factory_ozone.h",
144 ]
145 }
137 } 146 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698