Commit 76802f81 authored by tfarina@chromium.org's avatar tfarina@chromium.org

webkit: Cleanup webkit_common target.

This removes all the unnecessary stuff. Only base and url libraries are
necessary to compile data_element.cc.

BUG=None
TEST=None
R=jamesr@chromium.org

Review URL: https://codereview.chromium.org/392503002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@282945 0039d316-1c4b-4281-b951-d872f2087c98
parent e8d9d914
...@@ -16,21 +16,7 @@ component("common") { ...@@ -16,21 +16,7 @@ component("common") {
deps = [ deps = [
"//base", "//base",
"//base:i18n",
"//base/third_party/dynamic_annotations",
"//net",
"//skia",
"//third_party/icu",
"//third_party/WebKit/public:blink_headers",
"//ui/base",
"//ui/gfx",
"//ui/gfx/geometry",
"//ui/resources",
"//url", "//url",
"//webkit:resources",
]
forward_dependent_configs_from = [
"//third_party/WebKit/public:blink_headers",
] ]
} }
......
...@@ -16,53 +16,14 @@ ...@@ -16,53 +16,14 @@
'WEBKIT_COMMON_IMPLEMENTATION', 'WEBKIT_COMMON_IMPLEMENTATION',
], ],
'dependencies': [ 'dependencies': [
'<(DEPTH)/base/base.gyp:base', '../../base/base.gyp:base',
'<(DEPTH)/base/base.gyp:base_i18n', '../../url/url.gyp:url_lib',
'<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'<(DEPTH)/net/net.gyp:net',
'<(DEPTH)/skia/skia.gyp:skia',
'<(DEPTH)/ui/base/ui_base.gyp:ui_base',
'<(DEPTH)/ui/gfx/gfx.gyp:gfx',
'<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
'<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
'<(DEPTH)/url/url.gyp:url_lib',
'<(DEPTH)/webkit/webkit_resources.gyp:webkit_resources',
'<(DEPTH)/third_party/WebKit/public/blink_headers.gyp:blink_headers',
], ],
'export_dependent_settings': [
'<(DEPTH)/third_party/WebKit/public/blink_headers.gyp:blink_headers',
],
'include_dirs': [
'<(INTERMEDIATE_DIR)',
'<(SHARED_INTERMEDIATE_DIR)/ui',
'<(SHARED_INTERMEDIATE_DIR)/webkit',
],
'sources': [ 'sources': [
'data_element.cc', 'data_element.cc',
'data_element.h', 'data_element.h',
'webkit_common_export.h', 'webkit_common_export.h',
], ],
'conditions': [
['use_aura==1 and use_x11==1', {
'dependencies': [
'<(DEPTH)/build/linux/system.gyp:xcursor',
],
}],
['OS=="mac"', {
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
],
},
}],
['OS=="win"', {
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [ 4800, 4267 ],
}],
],
}, },
], ],
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment