OLD | NEW |
---|---|
(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: | |
OLD | NEW |