Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9502)

Unified Diff: chrome/chrome_worker.gypi

Issue 6990059: DevTools: devtools message plumbing between worker and page processes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698