OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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': 'renderer', | 8 'target_name': 'renderer', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
11 'dependencies': [ | 11 'dependencies': [ |
12 'common', | 12 'common', |
13 'plugin', | 13 'plugin', |
14 'chrome_resources', | 14 'chrome_resources', |
15 'chrome_strings', | 15 'chrome_strings', |
16 '../printing/printing.gyp:printing', | 16 '../printing/printing.gyp:printing', |
17 '../skia/skia.gyp:skia', | 17 '../skia/skia.gyp:skia', |
18 '../third_party/hunspell/hunspell.gyp:hunspell', | 18 '../third_party/hunspell/hunspell.gyp:hunspell', |
19 '../third_party/cld/cld.gyp:cld', | 19 '../third_party/cld/cld.gyp:cld', |
20 '../third_party/icu/icu.gyp:icui18n', | 20 '../third_party/icu/icu.gyp:icui18n', |
21 '../third_party/icu/icu.gyp:icuuc', | 21 '../third_party/icu/icu.gyp:icuuc', |
22 '../third_party/npapi/npapi.gyp:npapi', | 22 '../third_party/npapi/npapi.gyp:npapi', |
23 # TODO(yaar): Should only stop depending on webcore and depend | |
24 # only on webkit. | |
25 '../third_party/WebKit/WebCore/WebCore.gyp/WebCore.gyp:webcore', | |
26 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', | 23 '../third_party/WebKit/WebKit/chromium/WebKit.gyp:webkit', |
27 '../webkit/webkit.gyp:glue', | 24 '../webkit/webkit.gyp:glue', |
| 25 '../webkit/webkit.gyp:webkit_resources', |
28 ], | 26 ], |
29 'include_dirs': [ | 27 'include_dirs': [ |
30 '..', | 28 '..', |
31 '../third_party/cld', | 29 '../third_party/cld', |
32 ], | 30 ], |
33 'defines': [ | 31 'defines': [ |
34 '<@(nacl_defines)', | 32 '<@(nacl_defines)', |
35 ], | 33 ], |
36 'direct_dependent_settings': { | 34 'direct_dependent_settings': { |
37 'defines': [ | 35 'defines': [ |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 ], | 234 ], |
237 }, | 235 }, |
238 ], | 236 ], |
239 } | 237 } |
240 | 238 |
241 # Local Variables: | 239 # Local Variables: |
242 # tab-width:2 | 240 # tab-width:2 |
243 # indent-tabs-mode:nil | 241 # indent-tabs-mode:nil |
244 # End: | 242 # End: |
245 # vim: set expandtab tabstop=2 shiftwidth=2: | 243 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |