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 { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 { | 76 { |
77 'target_name': 'webkit_support_common', | 77 'target_name': 'webkit_support_common', |
78 'type': 'static_library', | 78 'type': 'static_library', |
79 'dependencies': [ | 79 'dependencies': [ |
80 '<(DEPTH)/base/base.gyp:base', | 80 '<(DEPTH)/base/base.gyp:base', |
81 '<(DEPTH)/crypto/crypto.gyp:crypto', | 81 '<(DEPTH)/crypto/crypto.gyp:crypto', |
82 '<(DEPTH)/net/net.gyp:net', | 82 '<(DEPTH)/net/net.gyp:net', |
83 '<(DEPTH)/skia/skia.gyp:skia', | 83 '<(DEPTH)/skia/skia.gyp:skia', |
84 '<(DEPTH)/ui/ui.gyp:ui', | 84 '<(DEPTH)/ui/ui.gyp:ui', |
85 'glue', | 85 'glue', |
86 'webkit_support_gfx', | |
86 ], | 87 ], |
87 'export_dependent_settings': [ | 88 'export_dependent_settings': [ |
88 '<(DEPTH)/base/base.gyp:base', | 89 '<(DEPTH)/base/base.gyp:base', |
89 ], | 90 ], |
90 'sources': [ | 91 'sources': [ |
91 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', | 92 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', |
92 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', | 93 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', |
93 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc', | 94 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc', |
94 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h', | 95 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h', |
95 '<(DEPTH)/webkit/tools/test_shell/simple_appcache_system.cc', | 96 '<(DEPTH)/webkit/tools/test_shell/simple_appcache_system.cc', |
(...skipping 10 matching lines...) Expand all Loading... | |
106 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', | 107 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', |
107 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', | 108 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', |
108 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', | 109 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', |
109 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', | 110 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', |
110 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc', | 111 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc', |
111 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h', | 112 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h', |
112 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', | 113 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', |
113 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', | 114 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', |
114 'simple_database_system.cc', | 115 'simple_database_system.cc', |
115 'simple_database_system.h', | 116 'simple_database_system.h', |
116 'webkit_support_gfx.h', | |
117 'webkit_support_gfx.cc', | |
118 ], | 117 ], |
119 'conditions': [ | 118 'conditions': [ |
120 ['inside_chromium_build==0', { | 119 ['inside_chromium_build==0', { |
121 'dependencies': [ | 120 'dependencies': [ |
122 'setup_third_party.gyp:third_party_headers', | 121 'setup_third_party.gyp:third_party_headers', |
123 ], | 122 ], |
124 }], | 123 }], |
125 ], | 124 ], |
126 }, | 125 }, |
126 | |
127 { | |
128 'target_name': 'webkit_support_gfx', | |
129 'type': 'static_library', | |
130 'dependencies': [ | |
131 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | |
132 ], | |
133 'sources': [ | |
134 'webkit_support_gfx.h', | |
135 'webkit_support_gfx.cc', | |
136 ], | |
137 'include_dirs': [ | |
138 '../..', | |
tony
2011/10/12 16:50:48
use '<(DEPTH)' instead.
HaoZheng
2011/10/13 03:16:02
Done.
| |
139 ], | |
140 'conditions': [ | |
141 ['OS=="android"', { | |
142 'toolsets': ['target', 'host'], | |
143 }], | |
144 ], | |
145 }, | |
127 ], | 146 ], |
128 } | 147 } |
OLD | NEW |