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