diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 16:21:05 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-14 16:21:05 +0000 |
commit | 6e07d8b7d3b054975a2e717a5d0a6e60bc0c9444 (patch) | |
tree | cf8cb65ab8ffa28c7165b1e9400f9918bdb4c712 /content/content_worker.gypi | |
parent | 5558fffd6a542a5eb0260ff4866ed9388438704b (diff) | |
download | chromium_src-6e07d8b7d3b054975a2e717a5d0a6e60bc0c9444.zip chromium_src-6e07d8b7d3b054975a2e717a5d0a6e60bc0c9444.tar.gz chromium_src-6e07d8b7d3b054975a2e717a5d0a6e60bc0c9444.tar.bz2 |
Move worker code from chrome\worker to content\worker.
TBR=atwilson
Review URL: http://codereview.chromium.org/6691004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78039 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/content_worker.gypi')
-rw-r--r-- | content/content_worker.gypi | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/content/content_worker.gypi b/content/content_worker.gypi new file mode 100644 index 0000000..fa1d504 --- /dev/null +++ b/content/content_worker.gypi @@ -0,0 +1,39 @@ +# Copyright (c) 2011 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. + +{ + 'targets': [ + { + 'target_name': 'content_worker', + 'type': '<(library)', + 'msvs_guid': 'C78D02D0-A366-4EC6-A248-AA8E64C4BA18', + 'dependencies': [ + 'content_common', + '../base/base.gyp:base', + '../skia/skia.gyp:skia', + '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', + ], + 'sources': [ + 'worker/websharedworker_stub.cc', + 'worker/websharedworker_stub.h', + 'worker/webworker_stub_base.cc', + 'worker/webworker_stub_base.h', + 'worker/webworker_stub.cc', + 'worker/webworker_stub.h', + 'worker/webworkerclient_proxy.cc', + 'worker/webworkerclient_proxy.h', + 'worker/worker_main.cc', + 'worker/worker_thread.cc', + 'worker/worker_thread.h', + 'worker/worker_webapplicationcachehost_impl.cc', + 'worker/worker_webapplicationcachehost_impl.h', + 'worker/worker_webkitclient_impl.cc', + 'worker/worker_webkitclient_impl.h', + ], + 'include_dirs': [ + '..', + ], + }, + ], +} |