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 'dependencies': [ | 13 'dependencies': [ |
14 '<(DEPTH)/base/base.gyp:base', | 14 '<(DEPTH)/base/base.gyp:base', |
15 '<(DEPTH)/ui/ui.gyp:ui_gfx', | |
16 '<(DEPTH)/media/media.gyp:media', | 15 '<(DEPTH)/media/media.gyp:media', |
| 16 '<(DEPTH)/net/net.gyp:net', |
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 '<(DEPTH)/ui/ui.gyp:ui_gfx', |
19 'appcache', | 20 'appcache', |
20 'blob', | 21 'blob', |
21 'database', | 22 'database', |
22 'fileapi', | 23 'fileapi', |
23 'glue', | 24 'glue', |
24 'webkit_gpu', | 25 'webkit_gpu', |
25 'webkit_support_common', | 26 'webkit_support_common', |
26 ], | 27 ], |
27 'include_dirs': [ | 28 'include_dirs': [ |
28 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit | 29 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 }], | 70 }], |
70 ], | 71 ], |
71 }, | 72 }, |
72 | 73 |
73 { | 74 { |
74 'target_name': 'webkit_support_common', | 75 'target_name': 'webkit_support_common', |
75 'type': 'static_library', | 76 'type': 'static_library', |
76 'dependencies': [ | 77 'dependencies': [ |
77 '<(DEPTH)/base/base.gyp:base', | 78 '<(DEPTH)/base/base.gyp:base', |
78 '<(DEPTH)/crypto/crypto.gyp:crypto', | 79 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 80 '<(DEPTH)/net/net.gyp:net', |
79 '<(DEPTH)/skia/skia.gyp:skia', | 81 '<(DEPTH)/skia/skia.gyp:skia', |
80 '<(DEPTH)/ui/ui.gyp:ui_base', | 82 '<(DEPTH)/ui/ui.gyp:ui_base', |
81 'glue', | 83 'glue', |
82 ], | 84 ], |
83 'export_dependent_settings': [ | 85 'export_dependent_settings': [ |
84 '<(DEPTH)/base/base.gyp:base', | 86 '<(DEPTH)/base/base.gyp:base', |
85 ], | 87 ], |
86 'sources': [ | 88 'sources': [ |
87 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', | 89 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', |
88 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', | 90 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', |
(...skipping 29 matching lines...) Expand all Loading... |
118 }], | 120 }], |
119 ], | 121 ], |
120 }, | 122 }, |
121 ], | 123 ], |
122 } | 124 } |
123 # Local Variables: | 125 # Local Variables: |
124 # tab-width:2 | 126 # tab-width:2 |
125 # indent-tabs-mode:nil | 127 # indent-tabs-mode:nil |
126 # End: | 128 # End: |
127 # vim: set expandtab tabstop=2 shiftwidth=2: | 129 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |