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_common', | 8 'target_name': 'content_common', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../ipc/ipc.gyp:ipc', | 11 '../ipc/ipc.gyp:ipc', |
12 '../third_party/icu/icu.gyp:icuuc', | 12 '../third_party/icu/icu.gyp:icuuc', |
13 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 13 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 14 '../webkit/support/webkit_support.gyp:blob', |
14 '../webkit/support/webkit_support.gyp:fileapi', | 15 '../webkit/support/webkit_support.gyp:fileapi', |
15 ], | 16 ], |
16 'include_dirs': [ | 17 'include_dirs': [ |
17 '..', | 18 '..', |
18 ], | 19 ], |
19 'sources': [ | 20 'sources': [ |
20 'common/child_process.cc', | 21 'common/child_process.cc', |
21 'common/child_process.h', | 22 'common/child_process.h', |
22 'common/child_process_host.cc', | 23 'common/child_process_host.cc', |
23 'common/child_process_host.h', | 24 'common/child_process_host.h', |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 'common/sandbox_init_wrapper.h', | 96 'common/sandbox_init_wrapper.h', |
96 'common/sandbox_init_wrapper_linux.cc', | 97 'common/sandbox_init_wrapper_linux.cc', |
97 'common/sandbox_init_wrapper_mac.cc', | 98 'common/sandbox_init_wrapper_mac.cc', |
98 'common/sandbox_init_wrapper_win.cc', | 99 'common/sandbox_init_wrapper_win.cc', |
99 'common/sandbox_mac.h', | 100 'common/sandbox_mac.h', |
100 'common/sandbox_mac.mm', | 101 'common/sandbox_mac.mm', |
101 'common/socket_stream.h', | 102 'common/socket_stream.h', |
102 'common/socket_stream_dispatcher.cc', | 103 'common/socket_stream_dispatcher.cc', |
103 'common/socket_stream_dispatcher.h', | 104 'common/socket_stream_dispatcher.h', |
104 'common/socket_stream_messages.h', | 105 'common/socket_stream_messages.h', |
| 106 'common/webblobregistry_impl.cc', |
| 107 'common/webblobregistry_impl.h', |
| 108 'common/webblob_messages.h', |
105 'common/worker_messages.h', | 109 'common/worker_messages.h', |
106 ], | 110 ], |
107 'conditions': [ | 111 'conditions': [ |
108 ['OS=="win"', { | 112 ['OS=="win"', { |
109 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 113 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
110 }], | 114 }], |
111 ], | 115 ], |
112 }, | 116 }, |
113 ], | 117 ], |
114 } | 118 } |
OLD | NEW |