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

Unified Diff: webkit/support/webkit_support.gypi

Issue 23526028: Move source files from webkit/support to content/test (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/support/webkit_support.gyp ('k') | webkit/support/webkit_support_glue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/webkit_support.gypi
diff --git a/webkit/support/webkit_support.gypi b/webkit/support/webkit_support.gypi
deleted file mode 100644
index e8227f061364f39018c6ac67dd8dc8d6fb6344a6..0000000000000000000000000000000000000000
--- a/webkit/support/webkit_support.gypi
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'variables': {
- 'chromium_code': 1,
- },
- 'targets': [
- {
- 'target_name': 'webkit_support',
- 'type': 'static_library',
- 'variables': { 'enable_wexit_time_destructors': 1, },
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/base/base.gyp:base_i18n',
- '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- '<(DEPTH)/cc/cc.gyp:cc',
- '<(DEPTH)/media/media.gyp:media',
- '<(DEPTH)/net/net.gyp:net',
- '<(DEPTH)/skia/skia.gyp:skia',
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(DEPTH)/ui/gl/gl.gyp:gl',
- '<(DEPTH)/ui/ui.gyp:shell_dialogs',
- '<(DEPTH)/ui/ui.gyp:ui',
- '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
- '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
- '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common',
- '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_bindings',
- '<(DEPTH)/webkit/renderer/compositor_bindings/compositor_bindings.gyp:webkit_compositor_support',
- '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer',
- '<(DEPTH)/webkit/storage_browser.gyp:webkit_storage_browser',
- '<(DEPTH)/webkit/storage_common.gyp:webkit_storage_common',
- 'glue',
- 'glue_child',
- 'webkit_support_common',
- ],
- 'include_dirs': [
- '<(SHARED_INTERMEDIATE_DIR)/webkit', # for a header generated by grit
- ],
- 'defines': [
- # Technically not a unit test but require functions available only to
- # unit tests.
- 'UNIT_TEST'
- ],
- 'sources': [
- 'test_webkit_platform_support.cc',
- 'test_webkit_platform_support.h',
- 'webkit_support.cc',
- 'webkit_support.h',
- 'webkit_support_glue.cc',
- 'weburl_loader_mock.cc',
- 'weburl_loader_mock.h',
- 'weburl_loader_mock_factory.cc',
- 'weburl_loader_mock_factory.h',
- 'web_gesture_curve_mock.cc',
- 'web_gesture_curve_mock.h',
- 'web_layer_tree_view_impl_for_testing.cc',
- 'web_layer_tree_view_impl_for_testing.h',
- ],
- 'conditions': [
- ['OS=="mac"', {
- 'copies': [{
- 'destination': '<(SHARED_INTERMEDIATE_DIR)/webkit',
- 'files': [
- '../tools/test_shell/resources/missingImage.png',
- '../tools/test_shell/resources/textAreaResizeCorner.png',
- ],
- }],
- },{ # OS!="mac"
- 'copies': [{
- 'destination': '<(PRODUCT_DIR)/DumpRenderTree_resources',
- 'files': [
- '../tools/test_shell/resources/missingImage.gif',
- '../tools/test_shell/resources/textAreaResizeCorner.png',
- ],
- }],
- }],
- ],
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, ],
- },
-
- {
- 'target_name': 'webkit_support_common',
- 'type': 'static_library',
- 'variables': { 'enable_wexit_time_destructors': 1, },
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/net/net.gyp:net',
- '<(DEPTH)/skia/skia.gyp:skia',
- '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
- '<(DEPTH)/ui/ui.gyp:ui',
- '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent',
- '<(DEPTH)/webkit/renderer/webkit_renderer.gyp:webkit_renderer',
- 'glue',
- ],
- 'export_dependent_settings': [
- '<(DEPTH)/base/base.gyp:base',
- ],
- 'sources': [
- '<(DEPTH)/webkit/support/mock_webclipboard_impl.cc',
- '<(DEPTH)/webkit/support/mock_webclipboard_impl.h',
- ],
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, ],
- },
- ],
-}
« 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