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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'worker',
9 'type': '<(library)',
10 '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
11 'dependencies': [
12 'common',
13 '../content/content.gyp:content_worker',
14 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
15 '../webkit/support/webkit_support.gyp:glue',
16 ],
17 'sources': [
18 'worker/chrome_content_worker_client.cc',
19 'worker/chrome_content_worker_client.h',
20 'worker/worker_devtools_agent.cc',
21 'worker/worker_devtools_agent.h',
22 ],
23 }
24 ],
25 }
26
27 # Local Variables:
28 # tab-width:2
29 # indent-tabs-mode:nil
30 # End:
31 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698