| 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 'variables': { |
| 7 'conditions': [ |
| 8 ['inside_chromium_build==0', { |
| 9 'webkit_src_dir': '../../../../..', |
| 10 },{ |
| 11 'webkit_src_dir': '../../third_party/WebKit', |
| 12 }], |
| 13 ], |
| 14 }, |
| 6 'targets': [ | 15 'targets': [ |
| 7 { | 16 { |
| 8 'target_name': 'blob', | 17 'target_name': 'blob', |
| 9 'type': '<(component)', | 18 'type': '<(component)', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 19 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 11 'dependencies': [ | 20 'dependencies': [ |
| 12 '<(DEPTH)/base/base.gyp:base', | 21 '<(DEPTH)/base/base.gyp:base', |
| 13 '<(DEPTH)/base/base.gyp:base_i18n', | 22 '<(DEPTH)/base/base.gyp:base_i18n', |
| 14 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 15 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 38 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 47 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 39 ], | 48 ], |
| 40 }], | 49 }], |
| 41 # TODO(dpranke): Figure out why this works at all and/or get | 50 # TODO(dpranke): Figure out why this works at all and/or get |
| 42 # rid of it. | 51 # rid of it. |
| 43 ['OS=="win" and component == "shared_library"', { | 52 ['OS=="win" and component == "shared_library"', { |
| 44 'dependencies': [ | 53 'dependencies': [ |
| 45 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', | 54 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', |
| 46 ], | 55 ], |
| 47 }], | 56 }], |
| 57 [# TODO(dpranke): Remove once the circular dependencies in |
| 58 # WebKit.gyp are fixed on the mac. |
| 59 # See https://bugs.webkit.org/show_bug.cgi?id=68463 |
| 60 'OS!="mac"', { |
| 61 'dependencies': [ |
| 62 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 63 ], |
| 64 }], |
| 48 ], | 65 ], |
| 49 }, | 66 }, |
| 50 ], | 67 ], |
| 51 } | 68 } |
| OLD | NEW |