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

Side by Side Diff: ui/compositor/compositor.gyp

Issue 109433013: Move geometric types to a separate, more lightweight target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years 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) 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': 'compositor', 11 'target_name': 'compositor',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 15 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
16 '<(DEPTH)/cc/cc.gyp:cc', 16 '<(DEPTH)/cc/cc.gyp:cc',
17 '<(DEPTH)/skia/skia.gyp:skia', 17 '<(DEPTH)/skia/skia.gyp:skia',
18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', 18 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal',
19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
20 '<(DEPTH)/ui/gl/gl.gyp:gl', 21 '<(DEPTH)/ui/gl/gl.gyp:gl',
21 ], 22 ],
22 'defines': [ 23 'defines': [
23 'COMPOSITOR_IMPLEMENTATION', 24 'COMPOSITOR_IMPLEMENTATION',
24 ], 25 ],
25 'sources': [ 26 'sources': [
26 'compositor.cc', 27 'compositor.cc',
27 'compositor.h', 28 'compositor.h',
28 'compositor_export.h', 29 'compositor_export.h',
29 'compositor_observer.h', 30 'compositor_observer.h',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 { 74 {
74 'target_name': 'compositor_test_support', 75 'target_name': 'compositor_test_support',
75 'type': 'static_library', 76 'type': 'static_library',
76 'dependencies': [ 77 'dependencies': [
77 '<(DEPTH)/base/base.gyp:base', 78 '<(DEPTH)/base/base.gyp:base',
78 '<(DEPTH)/cc/cc.gyp:cc', 79 '<(DEPTH)/cc/cc.gyp:cc',
79 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 80 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
80 '<(DEPTH)/skia/skia.gyp:skia', 81 '<(DEPTH)/skia/skia.gyp:skia',
81 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal', 82 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink_minimal',
82 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 83 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
84 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
83 '<(DEPTH)/ui/gl/gl.gyp:gl', 85 '<(DEPTH)/ui/gl/gl.gyp:gl',
84 '<(DEPTH)/ui/ui.gyp:ui', 86 '<(DEPTH)/ui/ui.gyp:ui',
85 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', 87 '<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu',
86 'compositor', 88 'compositor',
87 ], 89 ],
88 'sources': [ 90 'sources': [
89 'test/test_layers.cc', 91 'test/test_layers.cc',
90 'test/test_layers.h', 92 'test/test_layers.h',
91 'test/test_context_factory.cc', 93 'test/test_context_factory.cc',
92 'test/test_context_factory.h', 94 'test/test_context_factory.h',
93 'test/default_context_factory.cc', 95 'test/default_context_factory.cc',
94 'test/default_context_factory.h', 96 'test/default_context_factory.h',
95 'test/context_factories_for_test.cc', 97 'test/context_factories_for_test.cc',
96 'test/context_factories_for_test.h', 98 'test/context_factories_for_test.h',
97 'test/test_suite.cc', 99 'test/test_suite.cc',
98 'test/test_suite.h', 100 'test/test_suite.h',
99 ], 101 ],
100 }, 102 },
101 { 103 {
102 'target_name': 'compositor_unittests', 104 'target_name': 'compositor_unittests',
103 'type': 'executable', 105 'type': 'executable',
104 'dependencies': [ 106 'dependencies': [
105 '<(DEPTH)/base/base.gyp:base', 107 '<(DEPTH)/base/base.gyp:base',
106 '<(DEPTH)/base/base.gyp:test_support_base', 108 '<(DEPTH)/base/base.gyp:test_support_base',
107 '<(DEPTH)/cc/cc.gyp:cc', 109 '<(DEPTH)/cc/cc.gyp:cc',
108 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', 110 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support',
109 '<(DEPTH)/skia/skia.gyp:skia', 111 '<(DEPTH)/skia/skia.gyp:skia',
110 '<(DEPTH)/testing/gtest.gyp:gtest', 112 '<(DEPTH)/testing/gtest.gyp:gtest',
111 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 113 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
114 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
112 '<(DEPTH)/ui/gl/gl.gyp:gl', 115 '<(DEPTH)/ui/gl/gl.gyp:gl',
113 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources', 116 '<(DEPTH)/ui/resources/ui_resources.gyp:ui_resources',
114 '<(DEPTH)/ui/ui.gyp:ui', 117 '<(DEPTH)/ui/ui.gyp:ui',
115 'compositor', 118 'compositor',
116 'compositor_test_support', 119 'compositor_test_support',
117 ], 120 ],
118 'sources': [ 121 'sources': [
119 'layer_animation_element_unittest.cc', 122 'layer_animation_element_unittest.cc',
120 'layer_animation_sequence_unittest.cc', 123 'layer_animation_sequence_unittest.cc',
121 'layer_animator_unittest.cc', 124 'layer_animator_unittest.cc',
(...skipping 27 matching lines...) Expand all
149 'dependencies': [ 152 'dependencies': [
150 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 153 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
151 ], 154 ],
152 }], 155 }],
153 ], 156 ],
154 }], 157 }],
155 ], 158 ],
156 }, 159 },
157 ], 160 ],
158 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698