| 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 '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 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 '<(DEPTH)/base/base.gyp:base', | 15 '<(DEPTH)/base/base.gyp:base', |
| 16 '<(DEPTH)/media/media.gyp:media', | 16 '<(DEPTH)/media/media.gyp:media', |
| 17 '<(DEPTH)/net/net.gyp:net', | 17 '<(DEPTH)/net/net.gyp:net', |
| 18 '<(DEPTH)/skia/skia.gyp:skia', | 18 '<(DEPTH)/skia/skia.gyp:skia', |
| 19 '<(DEPTH)/testing/gtest.gyp:gtest', | 19 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 20 '<(DEPTH)/ui/ui.gyp:ui', | 20 '<(DEPTH)/ui/ui.gyp:ui', |
| 21 'appcache', | 21 'appcache', |
| 22 'blob', | 22 'blob', |
| 23 'database', | 23 'database', |
| 24 'dom_storage', | 24 'dom_storage', |
| 25 'fileapi', | 25 'fileapi', |
| 26 'forms', |
| 26 'glue', | 27 'glue', |
| 27 'webkit_base', | 28 'webkit_base', |
| 28 'webkit_gpu', | 29 'webkit_gpu', |
| 29 'webkit_media', | 30 'webkit_media', |
| 30 'webkit_support_common', | 31 'webkit_support_common', |
| 31 'webkit_user_agent', | 32 'webkit_user_agent', |
| 32 ], | 33 ], |
| 33 'include_dirs': [ | 34 'include_dirs': [ |
| 34 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 35 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
| 35 ], | 36 ], |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 '<(DEPTH)', | 163 '<(DEPTH)', |
| 163 ], | 164 ], |
| 164 'conditions': [ | 165 'conditions': [ |
| 165 ['OS=="android"', { | 166 ['OS=="android"', { |
| 166 'toolsets': ['target', 'host'], | 167 'toolsets': ['target', 'host'], |
| 167 }], | 168 }], |
| 168 ], | 169 ], |
| 169 }, | 170 }, |
| 170 ], | 171 ], |
| 171 } | 172 } |
| OLD | NEW |