| 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)/media/media.gyp:media', | 18 '<(DEPTH)/media/media.gyp:media', |
| 19 '<(DEPTH)/net/net.gyp:net', | 19 '<(DEPTH)/net/net.gyp:net', |
| 20 '<(DEPTH)/skia/skia.gyp:skia', | 20 '<(DEPTH)/skia/skia.gyp:skia', |
| 21 '<(DEPTH)/testing/gtest.gyp:gtest', | 21 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 22 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen', | 22 '<(DEPTH)/third_party/hyphen/hyphen.gyp:hyphen', |
| 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/compositor_bindings/compositor_bindings.gyp:webkit_comp
ositor_bindings', |
| 26 'glue', | 27 'glue', |
| 27 'user_agent', | 28 'user_agent', |
| 28 'webkit_base', | 29 'webkit_base', |
| 29 'webkit_gpu', | 30 'webkit_gpu', |
| 30 'webkit_media', | 31 'webkit_media', |
| 31 'webkit_storage', | 32 'webkit_storage', |
| 32 'webkit_support_common', | 33 'webkit_support_common', |
| 33 ], | 34 ], |
| 34 'include_dirs': [ | 35 'include_dirs': [ |
| 35 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 36 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 '<(DEPTH)', | 173 '<(DEPTH)', |
| 173 ], | 174 ], |
| 174 'conditions': [ | 175 'conditions': [ |
| 175 ['OS=="android"', { | 176 ['OS=="android"', { |
| 176 'toolsets': ['target', 'host'], | 177 'toolsets': ['target', 'host'], |
| 177 }], | 178 }], |
| 178 ], | 179 ], |
| 179 }, | 180 }, |
| 180 ], | 181 ], |
| 181 } | 182 } |
| OLD | NEW |