| 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)/base/base.gyp:base_i18n', | 16 '<(DEPTH)/base/base.gyp:base_i18n', |
| 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 18 '<(DEPTH)/cc/cc.gyp:cc', | 18 '<(DEPTH)/cc/cc.gyp:cc', |
| 19 '<(DEPTH)/media/media.gyp:media', | 19 '<(DEPTH)/media/media.gyp:media', |
| 20 '<(DEPTH)/net/net.gyp:net', | 20 '<(DEPTH)/net/net.gyp:net', |
| 21 '<(DEPTH)/skia/skia.gyp:skia', | 21 '<(DEPTH)/skia/skia.gyp:skia', |
| 22 '<(DEPTH)/testing/gtest.gyp:gtest', | 22 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 23 '<(DEPTH)/ui/gl/gl.gyp:gl', | 23 '<(DEPTH)/ui/gl/gl.gyp:gl', |
| 24 '<(DEPTH)/ui/ui.gyp:shell_dialogs', | 24 '<(DEPTH)/ui/ui.gyp:shell_dialogs', |
| 25 '<(DEPTH)/ui/ui.gyp:ui', | 25 '<(DEPTH)/ui/ui.gyp:ui', |
| 26 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 26 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 27 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 27 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
| 28 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', | 28 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', |
| 29 '<(DEPTH)/webkit/glue/webkit_glue_common.gyp:glue_common', | 29 '<(DEPTH)/webkit/glue/webkit_glue_common.gyp:glue_common', |
| 30 '<(DEPTH)/webkit/plugins/webkit_plugins.gyp:plugins_common', | |
| 31 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', | 30 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_bindings', |
| 32 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', | 31 '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:we
bkit_compositor_support', |
| 33 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', | 32 '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer', |
| 34 '<(DEPTH)/webkit/storage_browser.gyp:webkit_storage_browser', | 33 '<(DEPTH)/webkit/storage_browser.gyp:webkit_storage_browser', |
| 35 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', | 34 '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common', |
| 36 '<(DEPTH)/webkit/storage_renderer.gyp:webkit_storage_renderer', | 35 '<(DEPTH)/webkit/storage_renderer.gyp:webkit_storage_renderer', |
| 37 'glue', | 36 'glue', |
| 38 'glue_child', | 37 'glue_child', |
| 39 'plugins', | 38 'plugins', |
| 40 'webkit_media', | 39 'webkit_media', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 '<(DEPTH)', | 154 '<(DEPTH)', |
| 156 ], | 155 ], |
| 157 'conditions': [ | 156 'conditions': [ |
| 158 ['OS=="android"', { | 157 ['OS=="android"', { |
| 159 'toolsets': ['target', 'host'], | 158 'toolsets': ['target', 'host'], |
| 160 }], | 159 }], |
| 161 ], | 160 ], |
| 162 }, | 161 }, |
| 163 ], | 162 ], |
| 164 } | 163 } |
| OLD | NEW |