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, }, |
(...skipping 15 matching lines...) Expand all Loading... |
26 '../printing/printing.gyp:printing', | 26 '../printing/printing.gyp:printing', |
27 '../skia/skia.gyp:skia', | 27 '../skia/skia.gyp:skia', |
28 '../third_party/WebKit/public/blink.gyp:blink', | 28 '../third_party/WebKit/public/blink.gyp:blink', |
29 '../third_party/hunspell/hunspell.gyp:hunspell', | 29 '../third_party/hunspell/hunspell.gyp:hunspell', |
30 '../third_party/icu/icu.gyp:icui18n', | 30 '../third_party/icu/icu.gyp:icui18n', |
31 '../third_party/icu/icu.gyp:icuuc', | 31 '../third_party/icu/icu.gyp:icuuc', |
32 '../third_party/npapi/npapi.gyp:npapi', | 32 '../third_party/npapi/npapi.gyp:npapi', |
33 '../third_party/re2/re2.gyp:re2', | 33 '../third_party/re2/re2.gyp:re2', |
34 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', | 34 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h', |
35 '../ui/surface/surface.gyp:surface', | 35 '../ui/surface/surface.gyp:surface', |
| 36 '../webkit/child/webkit_child.gyp:webkit_child', |
36 '../webkit/common/webkit_common.gyp:webkit_common', | 37 '../webkit/common/webkit_common.gyp:webkit_common', |
37 '../webkit/glue/webkit_glue.gyp:glue', | 38 '../webkit/glue/webkit_glue.gyp:glue', |
38 '../webkit/glue/webkit_glue.gyp:glue_child', | |
39 '../webkit/renderer/webkit_renderer.gyp:webkit_renderer', | 39 '../webkit/renderer/webkit_renderer.gyp:webkit_renderer', |
40 '../webkit/webkit_resources.gyp:webkit_resources', | 40 '../webkit/webkit_resources.gyp:webkit_resources', |
41 ], | 41 ], |
42 'include_dirs': [ | 42 'include_dirs': [ |
43 '..', | 43 '..', |
44 # Needed by chrome_content_renderer_client.cc. | 44 # Needed by chrome_content_renderer_client.cc. |
45 '<(SHARED_INTERMEDIATE_DIR)', | 45 '<(SHARED_INTERMEDIATE_DIR)', |
46 ], | 46 ], |
47 'defines': [ | 47 'defines': [ |
48 '<@(nacl_defines)', | 48 '<@(nacl_defines)', |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
473 'dependencies': [ | 473 'dependencies': [ |
474 # TODO(hclam): See crbug.com/298380 for details. | 474 # TODO(hclam): See crbug.com/298380 for details. |
475 # We should isolate the APIs needed by the renderer. | 475 # We should isolate the APIs needed by the renderer. |
476 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', | 476 '<(DEPTH)/chrome/common/extensions/api/api.gyp:api', |
477 ], | 477 ], |
478 }], | 478 }], |
479 ], | 479 ], |
480 }, | 480 }, |
481 ], | 481 ], |
482 } | 482 } |
OLD | NEW |