Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(426)

Side by Side Diff: webkit/support/webkit_support.gypi

Issue 7328011: Introduce ui.dll / libui.so for the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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)/media/media.gyp:media', 15 '<(DEPTH)/media/media.gyp:media',
16 '<(DEPTH)/net/net.gyp:net', 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 '<(DEPTH)/ui/ui.gyp:ui',
20 'appcache', 20 'appcache',
21 'blob', 21 'blob',
22 'database', 22 'database',
23 'fileapi', 23 'fileapi',
24 'glue', 24 'glue',
25 'webkit_gpu', 25 'webkit_gpu',
26 'webkit_support_common', 26 'webkit_support_common',
27 ], 27 ],
28 'include_dirs': [ 28 'include_dirs': [
29 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit 29 '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit
30 ], 30 ],
31 'defines': [ 31 'defines': [
32 # Technically not a unit test but require functions available only to 32 # Technically not a unit test but require functions available only to
33 # unit tests. 33 # unit tests.
34 'UNIT_TEST' 34 'UNIT_TEST'
35 ], 35 ],
36 'sources': [ 36 'sources': [
37 'drt_application_mac.h', 37 'drt_application_mac.h',
38 'drt_application_mac.mm', 38 'drt_application_mac.mm',
39 'platform_support.h', 39 'platform_support.h',
40 'platform_support_gtk.cc', 40 'platform_support_gtk.cc',
41 'platform_support_mac.mm', 41 'platform_support_mac.mm',
42 'platform_support_win.cc', 42 'platform_support_win.cc',
43 'test_webkit_client.cc', 43 'test_webkit_client.cc',
44 'test_webkit_client.h', 44 'test_webkit_client.h',
45 'test_webplugin_page_delegate.cc', 45 'test_webplugin_page_delegate.cc',
46 'test_webplugin_page_delegate.h', 46 'test_webplugin_page_delegate.h',
47 'webkit_support.cc', 47 'webkit_support.cc',
48 'webkit_support.h', 48 'webkit_support.h',
49 'webkit_support_gfx.h',
50 'webkit_support_glue.cc', 49 'webkit_support_glue.cc',
51 'weburl_loader_mock.cc', 50 'weburl_loader_mock.cc',
52 'weburl_loader_mock.h', 51 'weburl_loader_mock.h',
53 'weburl_loader_mock_factory.cc', 52 'weburl_loader_mock_factory.cc',
54 'weburl_loader_mock_factory.h', 53 'weburl_loader_mock_factory.h',
55 'web_audio_device_mock.cc', 54 'web_audio_device_mock.cc',
56 'web_audio_device_mock.h', 55 'web_audio_device_mock.h',
57 ], 56 ],
58 'conditions': [ 57 'conditions': [
59 ['OS=="mac"', { 58 ['OS=="mac"', {
(...skipping 14 matching lines...) Expand all
74 }, 73 },
75 74
76 { 75 {
77 'target_name': 'webkit_support_common', 76 'target_name': 'webkit_support_common',
78 'type': 'static_library', 77 'type': 'static_library',
79 'dependencies': [ 78 'dependencies': [
80 '<(DEPTH)/base/base.gyp:base', 79 '<(DEPTH)/base/base.gyp:base',
81 '<(DEPTH)/crypto/crypto.gyp:crypto', 80 '<(DEPTH)/crypto/crypto.gyp:crypto',
82 '<(DEPTH)/net/net.gyp:net', 81 '<(DEPTH)/net/net.gyp:net',
83 '<(DEPTH)/skia/skia.gyp:skia', 82 '<(DEPTH)/skia/skia.gyp:skia',
84 '<(DEPTH)/ui/ui.gyp:ui_base', 83 '<(DEPTH)/ui/ui.gyp:ui',
85 'glue', 84 'glue',
86 ], 85 ],
87 'export_dependent_settings': [ 86 'export_dependent_settings': [
88 '<(DEPTH)/base/base.gyp:base', 87 '<(DEPTH)/base/base.gyp:base',
89 ], 88 ],
90 'sources': [ 89 'sources': [
91 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', 90 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h',
92 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', 91 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m',
93 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc', 92 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc',
94 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h', 93 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h',
(...skipping 11 matching lines...) Expand all
106 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc', 105 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.cc',
107 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h', 106 '<(DEPTH)/webkit/tools/test_shell/simple_webcookiejar_impl.h',
108 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc', 107 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.cc',
109 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h', 108 '<(DEPTH)/webkit/tools/test_shell/test_shell_request_context.h',
110 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc', 109 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.cc',
111 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h', 110 '<(DEPTH)/webkit/tools/test_shell/test_shell_webblobregistry_impl.h',
112 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc', 111 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.cc',
113 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h', 112 '<(DEPTH)/webkit/tools/test_shell/test_shell_webmimeregistry_impl.h',
114 'simple_database_system.cc', 113 'simple_database_system.cc',
115 'simple_database_system.h', 114 'simple_database_system.h',
115 'webkit_support_gfx.h',
116 'webkit_support_gfx.cc',
116 ], 117 ],
117 'conditions': [ 118 'conditions': [
118 ['inside_chromium_build==0', { 119 ['inside_chromium_build==0', {
119 'dependencies': [ 120 'dependencies': [
120 'setup_third_party.gyp:third_party_headers', 121 'setup_third_party.gyp:third_party_headers',
121 ], 122 ],
122 }], 123 }],
123 ], 124 ],
124 }, 125 },
125 ], 126 ],
126 } 127 }
OLDNEW
« ui/ui.gyp ('K') | « views/views.gyp ('k') | webkit/support/webkit_support_gfx.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698