summaryrefslogtreecommitdiffstats
path: root/chromium/content/worker/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/worker/BUILD.gn')
-rw-r--r--chromium/content/worker/BUILD.gn34
1 files changed, 34 insertions, 0 deletions
diff --git a/chromium/content/worker/BUILD.gn b/chromium/content/worker/BUILD.gn
new file mode 100644
index 00000000000..23cfcffd9dc
--- /dev/null
+++ b/chromium/content/worker/BUILD.gn
@@ -0,0 +1,34 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("worker") {
+ visibility = "//content/*"
+ sources = [
+ "websharedworker_stub.cc",
+ "websharedworker_stub.h",
+ "websharedworkerclient_proxy.cc",
+ "websharedworkerclient_proxy.h",
+ "worker_main.cc",
+ "shared_worker_permission_client_proxy.cc",
+ "shared_worker_permission_client_proxy.h",
+ "worker_thread.cc",
+ "worker_thread.h",
+ "worker_webapplicationcachehost_impl.cc",
+ "worker_webapplicationcachehost_impl.h",
+ "worker_webkitplatformsupport_impl.cc",
+ "worker_webkitplatformsupport_impl.h",
+ ]
+
+ configs += [ "//content:content_implementation" ]
+
+ deps = [
+ "//base",
+ "//mojo/public/interfaces/service_provider",
+ "//skia",
+ #"//third_party/WebKit/public:blink", TODO(GYP)
+ # TODO(GYP) remove this when blink is enabled:
+ "//third_party/WebKit/public:blink_headers",
+ ]
+}
+