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 3 # found in the LICENSE file. 4 5 source_set("ppapi_plugin") { 6 visibility = [ "//content/*" ] 7 8 sources = [ 9 "broker_process_dispatcher.cc", 10 "broker_process_dispatcher.h", 11 "plugin_process_dispatcher.cc", 12 "plugin_process_dispatcher.h", 13 "ppapi_broker_main.cc", 14 "ppapi_plugin_main.cc", 15 "ppapi_thread.cc", 16 "ppapi_thread.h", 17 "ppapi_webkitplatformsupport_impl.cc", 18 "ppapi_webkitplatformsupport_impl.h", 19 ] 20 21 configs += [ "//content:content_implementation" ] 22 23 deps = [ 24 "//base", 25 "//content:export", 26 "//content/public/child:child_sources", 27 "//content/public/common:common_sources", 28 "//mojo/public/interfaces/application", 29 "//ppapi:ppapi_ipc", 30 "//skia", 31 "//third_party/icu", 32 "//third_party/WebKit/public:blink", 33 "//ui/base", 34 "//ui/gfx", 35 "//ui/gfx/geometry", 36 ] 37 } 38