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

Unified Diff: ui/gfx/compositor/compositor.gyp

Issue 10365007: ui: Move compositor/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix DEPS Created 8 years, 8 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 | « ui/gfx/compositor/compositor.cc ('k') | ui/gfx/compositor/compositor_export.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/compositor/compositor.gyp
diff --git a/ui/gfx/compositor/compositor.gyp b/ui/gfx/compositor/compositor.gyp
deleted file mode 100644
index d53f1f2a56de70b3fd9625d4396f395b841010d3..0000000000000000000000000000000000000000
--- a/ui/gfx/compositor/compositor.gyp
+++ /dev/null
@@ -1,137 +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': 'compositor',
- 'type': '<(component)',
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- '<(DEPTH)/skia/skia.gyp:skia',
- '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
- '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
- '<(DEPTH)/ui/ui.gyp:ui',
- '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi',
- '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
- '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu',
- ],
- 'defines': [
- 'COMPOSITOR_IMPLEMENTATION',
- ],
- 'sources': [
- 'compositor.cc',
- 'compositor.h',
- 'compositor_export.h',
- 'compositor_observer.h',
- 'compositor_setup.h',
- 'compositor_switches.cc',
- 'compositor_switches.h',
- 'debug_utils.cc',
- 'debug_utils.h',
- 'layer.cc',
- 'layer.h',
- 'layer_animation_delegate.h',
- 'layer_animation_element.cc',
- 'layer_animation_element.h',
- 'layer_animation_observer.cc',
- 'layer_animation_observer.h',
- 'layer_animation_sequence.cc',
- 'layer_animation_sequence.h',
- 'layer_animator.cc',
- 'layer_animator.h',
- 'layer_type.h',
- 'scoped_layer_animation_settings.cc',
- 'scoped_layer_animation_settings.h',
- 'screen_rotation.cc',
- 'screen_rotation.h',
- # UI tests need TestWebGraphicsContext3D, so we always build it.
- 'test_web_graphics_context_3d.cc',
- 'test_web_graphics_context_3d.h',
- ],
- 'conditions': [
- ['OS == "win" and use_aura == 1', {
- # TODO(sky): before we make this real need to remove
- # IDR_BITMAP_BRUSH_IMAGE.
- 'dependencies': [
- '<(DEPTH)/ui/ui.gyp:gfx_resources',
- '<(DEPTH)/third_party/angle/src/build_angle.gyp:libEGL',
- '<(DEPTH)/third_party/angle/src/build_angle.gyp:libGLESv2',
- ],
- }],
- ],
- },
- {
- 'target_name': 'compositor_test_support',
- 'type': 'static_library',
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_support',
- '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
- ],
- 'sources': [
- 'test/compositor_test_support.cc',
- 'test/compositor_test_support.h',
- ],
- 'conditions': [
- ['os_posix == 1 and OS != "mac"', {
- 'conditions': [
- ['linux_use_tcmalloc==1', {
- 'dependencies': [
- '<(DEPTH)/base/allocator/allocator.gyp:allocator',
- ],
- }],
- ],
- }],
- ],
- },
- {
- 'target_name': 'compositor_unittests',
- 'type': 'executable',
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/base/base.gyp:test_support_base',
- '<(DEPTH)/skia/skia.gyp:skia',
- '<(DEPTH)/testing/gtest.gyp:gtest',
- '<(DEPTH)/ui/gfx/gl/gl.gyp:gl',
- '<(DEPTH)/ui/ui.gyp:ui',
- 'compositor',
- 'compositor_test_support',
- ],
- 'sources': [
- 'layer_animation_element_unittest.cc',
- 'layer_animation_sequence_unittest.cc',
- 'layer_animator_unittest.cc',
- 'layer_unittest.cc',
- 'run_all_unittests.cc',
- 'test/test_compositor_host.h',
- 'test/test_compositor_host_linux.cc',
- 'test/test_compositor_host_mac.mm',
- 'test/test_compositor_host_win.cc',
- 'test/test_layer_animation_delegate.cc',
- 'test/test_layer_animation_delegate.h',
- 'test/test_layer_animation_observer.cc',
- 'test/test_layer_animation_observer.h',
- 'test/test_suite.cc',
- 'test/test_suite.h',
- 'test/test_utils.cc',
- 'test/test_utils.h',
- '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
- '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc'
- ],
- 'conditions': [
- # osmesa GL implementation is used on linux.
- ['OS=="linux"', {
- 'dependencies': [
- '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
- ],
- }],
- ],
- },
- ],
-}
« no previous file with comments | « ui/gfx/compositor/compositor.cc ('k') | ui/gfx/compositor/compositor_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698