| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'content_worker', | 8 'target_name': 'content_worker', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'msvs_guid': 'C78D02D0-A366-4EC6-A248-AA8E64C4BA18', | 10 'msvs_guid': 'C78D02D0-A366-4EC6-A248-AA8E64C4BA18', |
| 11 'dependencies': [ | 11 'dependencies': [ |
| 12 'content_common', | 12 'content_common', |
| 13 '../base/base.gyp:base', | 13 '../base/base.gyp:base', |
| 14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
| 15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 15 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 16 ], | 16 ], |
| 17 'sources': [ | 17 'sources': [ |
| 18 'worker/websharedworker_stub.cc', | 18 'worker/websharedworker_stub.cc', |
| 19 'worker/websharedworker_stub.h', | 19 'worker/websharedworker_stub.h', |
| 20 'worker/webworker_stub_base.cc', | 20 'worker/webworker_stub_base.cc', |
| 21 'worker/webworker_stub_base.h', | 21 'worker/webworker_stub_base.h', |
| 22 'worker/webworker_stub.cc', | 22 'worker/webworker_stub.cc', |
| 23 'worker/webworker_stub.h', | 23 'worker/webworker_stub.h', |
| 24 'worker/webworkerclient_proxy.cc', | 24 'worker/webworkerclient_proxy.cc', |
| 25 'worker/webworkerclient_proxy.h', | 25 'worker/webworkerclient_proxy.h', |
| 26 'worker/worker_devtools_agent.cc', |
| 27 'worker/worker_devtools_agent.h', |
| 26 'worker/worker_main.cc', | 28 'worker/worker_main.cc', |
| 27 'worker/worker_thread.cc', | 29 'worker/worker_thread.cc', |
| 28 'worker/worker_thread.h', | 30 'worker/worker_thread.h', |
| 29 'worker/worker_webapplicationcachehost_impl.cc', | 31 'worker/worker_webapplicationcachehost_impl.cc', |
| 30 'worker/worker_webapplicationcachehost_impl.h', | 32 'worker/worker_webapplicationcachehost_impl.h', |
| 31 'worker/worker_webkitclient_impl.cc', | 33 'worker/worker_webkitclient_impl.cc', |
| 32 'worker/worker_webkitclient_impl.h', | 34 'worker/worker_webkitclient_impl.h', |
| 33 ], | 35 ], |
| 34 'include_dirs': [ | 36 'include_dirs': [ |
| 35 '..', | 37 '..', |
| 36 ], | 38 ], |
| 37 }, | 39 }, |
| 38 ], | 40 ], |
| 39 } | 41 } |
| OLD | NEW |