| 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': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'webkit_support', | 11 'target_name': 'webkit_support', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 13 'dependencies': [ | 14 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
| 15 '<(DEPTH)/media/media.gyp:media', | 16 '<(DEPTH)/media/media.gyp:media', |
| 16 '<(DEPTH)/net/net.gyp:net', | 17 '<(DEPTH)/net/net.gyp:net', |
| 17 '<(DEPTH)/skia/skia.gyp:skia', | 18 '<(DEPTH)/skia/skia.gyp:skia', |
| 18 '<(DEPTH)/testing/gtest.gyp:gtest', | 19 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 19 '<(DEPTH)/ui/ui.gyp:ui', | 20 '<(DEPTH)/ui/ui.gyp:ui', |
| 20 'appcache', | 21 'appcache', |
| 21 'blob', | 22 'blob', |
| 22 'database', | 23 'database', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 '../tools/test_shell/resources/textAreaResizeCorner.png', | 72 '../tools/test_shell/resources/textAreaResizeCorner.png', |
| 72 ], | 73 ], |
| 73 }], | 74 }], |
| 74 }], | 75 }], |
| 75 ], | 76 ], |
| 76 }, | 77 }, |
| 77 | 78 |
| 78 { | 79 { |
| 79 'target_name': 'webkit_support_common', | 80 'target_name': 'webkit_support_common', |
| 80 'type': 'static_library', | 81 'type': 'static_library', |
| 82 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 81 'dependencies': [ | 83 'dependencies': [ |
| 82 '<(DEPTH)/base/base.gyp:base', | 84 '<(DEPTH)/base/base.gyp:base', |
| 83 '<(DEPTH)/crypto/crypto.gyp:crypto', | 85 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 84 '<(DEPTH)/net/net.gyp:net', | 86 '<(DEPTH)/net/net.gyp:net', |
| 85 '<(DEPTH)/skia/skia.gyp:skia', | 87 '<(DEPTH)/skia/skia.gyp:skia', |
| 86 '<(DEPTH)/ui/ui.gyp:ui', | 88 '<(DEPTH)/ui/ui.gyp:ui', |
| 87 'glue', | 89 'glue', |
| 88 'webkit_support_gfx', | 90 'webkit_support_gfx', |
| 89 ], | 91 ], |
| 90 'export_dependent_settings': [ | 92 'export_dependent_settings': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 'dependencies': [ | 124 'dependencies': [ |
| 123 'setup_third_party.gyp:third_party_headers', | 125 'setup_third_party.gyp:third_party_headers', |
| 124 ], | 126 ], |
| 125 }], | 127 }], |
| 126 ], | 128 ], |
| 127 }, | 129 }, |
| 128 | 130 |
| 129 { | 131 { |
| 130 'target_name': 'webkit_support_gfx', | 132 'target_name': 'webkit_support_gfx', |
| 131 'type': 'static_library', | 133 'type': 'static_library', |
| 134 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 132 'dependencies': [ | 135 'dependencies': [ |
| 133 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 136 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
| 134 ], | 137 ], |
| 135 'sources': [ | 138 'sources': [ |
| 136 'webkit_support_gfx.h', | 139 'webkit_support_gfx.h', |
| 137 'webkit_support_gfx.cc', | 140 'webkit_support_gfx.cc', |
| 138 ], | 141 ], |
| 139 'include_dirs': [ | 142 'include_dirs': [ |
| 140 '<(DEPTH)', | 143 '<(DEPTH)', |
| 141 ], | 144 ], |
| 142 'conditions': [ | 145 'conditions': [ |
| 143 ['OS=="android"', { | 146 ['OS=="android"', { |
| 144 'toolsets': ['target', 'host'], | 147 'toolsets': ['target', 'host'], |
| 145 }], | 148 }], |
| 146 ], | 149 ], |
| 147 }, | 150 }, |
| 148 ], | 151 ], |
| 149 } | 152 } |
| OLD | NEW |