| 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': '<(library)', | 12 'type': 'static_library', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
| 15 '<(DEPTH)/ui/ui.gyp:ui_gfx', | 15 '<(DEPTH)/ui/ui.gyp:ui_gfx', |
| 16 '<(DEPTH)/media/media.gyp:media', | 16 '<(DEPTH)/media/media.gyp:media', |
| 17 '<(DEPTH)/skia/skia.gyp:skia', | 17 '<(DEPTH)/skia/skia.gyp:skia', |
| 18 '<(DEPTH)/testing/gtest.gyp:gtest', | 18 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 19 'appcache', | 19 'appcache', |
| 20 'blob', | 20 'blob', |
| 21 'database', | 21 'database', |
| 22 'fileapi', | 22 'fileapi', |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 '../tools/test_shell/resources/missingImage.gif', | 65 '../tools/test_shell/resources/missingImage.gif', |
| 66 '../tools/test_shell/resources/textAreaResizeCorner.png', | 66 '../tools/test_shell/resources/textAreaResizeCorner.png', |
| 67 ], | 67 ], |
| 68 }], | 68 }], |
| 69 }], | 69 }], |
| 70 ], | 70 ], |
| 71 }, | 71 }, |
| 72 | 72 |
| 73 { | 73 { |
| 74 'target_name': 'webkit_support_common', | 74 'target_name': 'webkit_support_common', |
| 75 'type': '<(library)', | 75 'type': 'static_library', |
| 76 'dependencies': [ | 76 'dependencies': [ |
| 77 '<(DEPTH)/base/base.gyp:base', | 77 '<(DEPTH)/base/base.gyp:base', |
| 78 '<(DEPTH)/crypto/crypto.gyp:crypto', | 78 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 79 '<(DEPTH)/skia/skia.gyp:skia', | 79 '<(DEPTH)/skia/skia.gyp:skia', |
| 80 'glue', | 80 'glue', |
| 81 ], | 81 ], |
| 82 'export_dependent_settings': [ | 82 'export_dependent_settings': [ |
| 83 '<(DEPTH)/base/base.gyp:base', | 83 '<(DEPTH)/base/base.gyp:base', |
| 84 ], | 84 ], |
| 85 'sources': [ | 85 'sources': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 }], | 117 }], |
| 118 ], | 118 ], |
| 119 }, | 119 }, |
| 120 ], | 120 ], |
| 121 } | 121 } |
| 122 # Local Variables: | 122 # Local Variables: |
| 123 # tab-width:2 | 123 # tab-width:2 |
| 124 # indent-tabs-mode:nil | 124 # indent-tabs-mode:nil |
| 125 # End: | 125 # End: |
| 126 # vim: set expandtab tabstop=2 shiftwidth=2: | 126 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |