Index: chrome/chrome_worker.gypi |
diff --git a/chrome/chrome_worker.gypi b/chrome/chrome_worker.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5a27bfc2f6c3336f42b00a5ed106eeaab6b498fd |
--- /dev/null |
+++ b/chrome/chrome_worker.gypi |
@@ -0,0 +1,31 @@ |
+# 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': 'worker', |
+ 'type': '<(library)', |
+ 'msvs_guid': '6024324B-4874-45ac-9447-B964DEA05BFC', |
jam
2011/05/24 20:21:31
nit: guids aren't needed anymore
yurys
2011/05/25 17:28:29
Deleted this file along with chrome/worker/ direct
|
+ 'dependencies': [ |
+ 'common', |
+ '../content/content.gyp:content_worker', |
+ '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
+ '../webkit/support/webkit_support.gyp:glue', |
+ ], |
+ 'sources': [ |
+ 'worker/chrome_content_worker_client.cc', |
+ 'worker/chrome_content_worker_client.h', |
+ 'worker/worker_devtools_agent.cc', |
+ 'worker/worker_devtools_agent.h', |
+ ], |
+ } |
+ ], |
+} |
+ |
+# Local Variables: |
+# tab-width:2 |
+# indent-tabs-mode:nil |
+# End: |
+# vim: set expandtab tabstop=2 shiftwidth=2: |