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

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

Issue 10392068: ui: Move gl/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix mac_rel Created 8 years, 7 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 | « ui/compositor/compositor.cc ('k') | ui/compositor/test/test_suite.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': '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)/skia/skia.gyp:skia', 16 '<(DEPTH)/skia/skia.gyp:skia',
17 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', 17 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
18 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', 18 '<(DEPTH)/ui/gl/gl.gyp:gl',
19 '<(DEPTH)/ui/ui.gyp:ui', 19 '<(DEPTH)/ui/ui.gyp:ui',
20 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi', 20 '<(DEPTH)/webkit/support/webkit_support.gyp:fileapi',
21 '<(DEPTH)/webkit/support/webkit_support.gyp:glue', 21 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu', 22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_gpu',
23 ], 23 ],
24 'defines': [ 24 'defines': [
25 'COMPOSITOR_IMPLEMENTATION', 25 'COMPOSITOR_IMPLEMENTATION',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'compositor.cc', 28 'compositor.cc',
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 ], 93 ],
94 }, 94 },
95 { 95 {
96 'target_name': 'compositor_unittests', 96 'target_name': 'compositor_unittests',
97 'type': 'executable', 97 'type': 'executable',
98 'dependencies': [ 98 'dependencies': [
99 '<(DEPTH)/base/base.gyp:base', 99 '<(DEPTH)/base/base.gyp:base',
100 '<(DEPTH)/base/base.gyp:test_support_base', 100 '<(DEPTH)/base/base.gyp:test_support_base',
101 '<(DEPTH)/skia/skia.gyp:skia', 101 '<(DEPTH)/skia/skia.gyp:skia',
102 '<(DEPTH)/testing/gtest.gyp:gtest', 102 '<(DEPTH)/testing/gtest.gyp:gtest',
103 '<(DEPTH)/ui/gfx/gl/gl.gyp:gl', 103 '<(DEPTH)/ui/gl/gl.gyp:gl',
104 '<(DEPTH)/ui/ui.gyp:ui', 104 '<(DEPTH)/ui/ui.gyp:ui',
105 'compositor', 105 'compositor',
106 'compositor_test_support', 106 'compositor_test_support',
107 ], 107 ],
108 'sources': [ 108 'sources': [
109 'layer_animation_element_unittest.cc', 109 'layer_animation_element_unittest.cc',
110 'layer_animation_sequence_unittest.cc', 110 'layer_animation_sequence_unittest.cc',
111 'layer_animator_unittest.cc', 111 'layer_animator_unittest.cc',
112 'layer_unittest.cc', 112 'layer_unittest.cc',
113 'run_all_unittests.cc', 113 'run_all_unittests.cc',
(...skipping 16 matching lines...) Expand all
130 # osmesa GL implementation is used on linux. 130 # osmesa GL implementation is used on linux.
131 ['OS=="linux"', { 131 ['OS=="linux"', {
132 'dependencies': [ 132 'dependencies': [
133 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 133 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
134 ], 134 ],
135 }], 135 }],
136 ], 136 ],
137 }, 137 },
138 ], 138 ],
139 } 139 }
OLDNEW
« no previous file with comments | « ui/compositor/compositor.cc ('k') | ui/compositor/test/test_suite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698