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

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

Issue 10869073: Split user agent code out of the 'glue' target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to trunk Created 8 years, 3 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
« no previous file with comments | « webkit/support/webkit_support.gyp ('k') | webkit/support/webkit_support_glue.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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)/media/media.gyp:media', 17 '<(DEPTH)/media/media.gyp:media',
17 '<(DEPTH)/net/net.gyp:net', 18 '<(DEPTH)/net/net.gyp:net',
18 '<(DEPTH)/skia/skia.gyp:skia', 19 '<(DEPTH)/skia/skia.gyp:skia',
19 '<(DEPTH)/testing/gtest.gyp:gtest', 20 '<(DEPTH)/testing/gtest.gyp:gtest',
20 '<(DEPTH)/ui/ui.gyp:ui', 21 '<(DEPTH)/ui/ui.gyp:ui',
21 'appcache', 22 'appcache',
22 'blob', 23 'blob',
23 'database', 24 'database',
24 'dom_storage', 25 'dom_storage',
25 'fileapi', 26 'fileapi',
26 'forms', 27 'forms',
27 'glue', 28 'glue',
29 'user_agent',
28 'webkit_base', 30 'webkit_base',
29 'webkit_gpu', 31 'webkit_gpu',
30 'webkit_media', 32 'webkit_media',
31 'webkit_support_common', 33 'webkit_support_common',
32 'webkit_user_agent',
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
36 ], 37 ],
37 'defines': [ 38 'defines': [
38 # Technically not a unit test but require functions available only to 39 # Technically not a unit test but require functions available only to
39 # unit tests. 40 # unit tests.
40 'UNIT_TEST' 41 'UNIT_TEST'
41 ], 42 ],
42 'sources': [ 43 'sources': [
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 'type': 'static_library', 96 'type': 'static_library',
96 'variables': { 'enable_wexit_time_destructors': 1, }, 97 'variables': { 'enable_wexit_time_destructors': 1, },
97 'dependencies': [ 98 'dependencies': [
98 '<(DEPTH)/base/base.gyp:base', 99 '<(DEPTH)/base/base.gyp:base',
99 '<(DEPTH)/crypto/crypto.gyp:crypto', 100 '<(DEPTH)/crypto/crypto.gyp:crypto',
100 '<(DEPTH)/net/net.gyp:net', 101 '<(DEPTH)/net/net.gyp:net',
101 '<(DEPTH)/skia/skia.gyp:skia', 102 '<(DEPTH)/skia/skia.gyp:skia',
102 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib', 103 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
103 '<(DEPTH)/ui/ui.gyp:ui', 104 '<(DEPTH)/ui/ui.gyp:ui',
104 'glue', 105 'glue',
106 'user_agent',
105 'webkit_support_gfx', 107 'webkit_support_gfx',
106 ], 108 ],
107 'export_dependent_settings': [ 109 'export_dependent_settings': [
108 '<(DEPTH)/base/base.gyp:base', 110 '<(DEPTH)/base/base.gyp:base',
109 ], 111 ],
110 'sources': [ 112 'sources': [
111 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h', 113 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.h',
112 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m', 114 '<(DEPTH)/webkit/tools/test_shell/mac/DumpRenderTreePasteboard.m',
113 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc', 115 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.cc',
114 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h', 116 '<(DEPTH)/webkit/tools/test_shell/mock_webclipboard_impl.h',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 '<(DEPTH)', 165 '<(DEPTH)',
164 ], 166 ],
165 'conditions': [ 167 'conditions': [
166 ['OS=="android"', { 168 ['OS=="android"', {
167 'toolsets': ['target', 'host'], 169 'toolsets': ['target', 'host'],
168 }], 170 }],
169 ], 171 ],
170 }, 172 },
171 ], 173 ],
172 } 174 }
OLDNEW
« no previous file with comments | « webkit/support/webkit_support.gyp ('k') | webkit/support/webkit_support_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698