OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': 'static_library', | 9 'type': 'static_library', |
10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
11 'dependencies': [ | 11 'dependencies': [ |
12 'common', | 12 'common', |
13 'common_net', | 13 'common_net', |
14 'chrome_resources.gyp:chrome_resources', | 14 'chrome_resources.gyp:chrome_resources', |
15 'chrome_resources.gyp:chrome_strings', | 15 'chrome_resources.gyp:chrome_strings', |
| 16 '../components/components.gyp:visitedlink_renderer', |
16 '../content/content.gyp:content_renderer', | 17 '../content/content.gyp:content_renderer', |
17 '../net/net.gyp:net', | 18 '../net/net.gyp:net', |
18 '../printing/printing.gyp:printing', | 19 '../printing/printing.gyp:printing', |
19 '../skia/skia.gyp:skia', | 20 '../skia/skia.gyp:skia', |
20 '../third_party/hunspell/hunspell.gyp:hunspell', | 21 '../third_party/hunspell/hunspell.gyp:hunspell', |
21 '../third_party/icu/icu.gyp:icui18n', | 22 '../third_party/icu/icu.gyp:icui18n', |
22 '../third_party/icu/icu.gyp:icuuc', | 23 '../third_party/icu/icu.gyp:icuuc', |
23 '../third_party/npapi/npapi.gyp:npapi', | 24 '../third_party/npapi/npapi.gyp:npapi', |
24 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | 25 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', |
25 '../ui/surface/surface.gyp:surface', | 26 '../ui/surface/surface.gyp:surface', |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 'renderer/spellchecker/spellcheck_provider.h', | 264 'renderer/spellchecker/spellcheck_provider.h', |
264 'renderer/spellchecker/spellcheck.cc', | 265 'renderer/spellchecker/spellcheck.cc', |
265 'renderer/spellchecker/spellcheck.h', | 266 'renderer/spellchecker/spellcheck.h', |
266 'renderer/spellchecker/spellcheck_worditerator.cc', | 267 'renderer/spellchecker/spellcheck_worditerator.cc', |
267 'renderer/spellchecker/spellcheck_worditerator.h', | 268 'renderer/spellchecker/spellcheck_worditerator.h', |
268 'renderer/spellchecker/spelling_engine.h', | 269 'renderer/spellchecker/spelling_engine.h', |
269 'renderer/static_v8_external_string_resource.cc', | 270 'renderer/static_v8_external_string_resource.cc', |
270 'renderer/static_v8_external_string_resource.h', | 271 'renderer/static_v8_external_string_resource.h', |
271 'renderer/translate_helper.cc', | 272 'renderer/translate_helper.cc', |
272 'renderer/translate_helper.h', | 273 'renderer/translate_helper.h', |
273 'renderer/visitedlink_slave.cc', | |
274 'renderer/visitedlink_slave.h', | |
275 'renderer/webview_color_overlay.cc', | 274 'renderer/webview_color_overlay.cc', |
276 'renderer/webview_color_overlay.h', | 275 'renderer/webview_color_overlay.h', |
277 ], | 276 ], |
278 'conditions': [ | 277 'conditions': [ |
279 ['disable_nacl!=1', { | 278 ['disable_nacl!=1', { |
280 'dependencies': [ | 279 'dependencies': [ |
281 'nacl', | 280 'nacl', |
282 ], | 281 ], |
283 }], | 282 }], |
284 ['enable_plugins==1', { | 283 ['enable_plugins==1', { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 'export_dependent_settings': [ | 346 'export_dependent_settings': [ |
348 '<(allocator_target)', | 347 '<(allocator_target)', |
349 ], | 348 ], |
350 }], | 349 }], |
351 ], | 350 ], |
352 }], | 351 }], |
353 ], | 352 ], |
354 }, | 353 }, |
355 ], | 354 ], |
356 } | 355 } |
OLD | NEW |