| OLD | NEW |
| (Empty) |
| 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("worker") { | |
| 6 visibility = "//content/*" | |
| 7 sources = [ | |
| 8 "websharedworker_stub.cc", | |
| 9 "websharedworker_stub.h", | |
| 10 "websharedworkerclient_proxy.cc", | |
| 11 "websharedworkerclient_proxy.h", | |
| 12 "worker_main.cc", | |
| 13 "shared_worker_permission_client_proxy.cc", | |
| 14 "shared_worker_permission_client_proxy.h", | |
| 15 "worker_thread.cc", | |
| 16 "worker_thread.h", | |
| 17 "worker_webapplicationcachehost_impl.cc", | |
| 18 "worker_webapplicationcachehost_impl.h", | |
| 19 "worker_webkitplatformsupport_impl.cc", | |
| 20 "worker_webkitplatformsupport_impl.h", | |
| 21 ] | |
| 22 | |
| 23 configs += [ "//content:content_implementation" ] | |
| 24 | |
| 25 deps = [ | |
| 26 "//base", | |
| 27 "//mojo/public/interfaces/service_provider", | |
| 28 "//skia", | |
| 29 "//third_party/WebKit/public:blink", | |
| 30 ] | |
| 31 } | |
| 32 | |
| OLD | NEW |