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

Side by Side Diff: ui/aura/aura.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, 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 | « content/test/content_test_suite.cc ('k') | ui/aura/demo/demo_main.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': 'aura', 11 'target_name': 'aura',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../../base/base.gyp:base_i18n', 15 '../../base/base.gyp:base_i18n',
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
17 '../../skia/skia.gyp:skia', 17 '../../skia/skia.gyp:skia',
18 '../gfx/compositor/compositor.gyp:compositor', 18 '../compositor/compositor.gyp:compositor',
19 '../ui.gyp:gfx_resources', 19 '../ui.gyp:gfx_resources',
20 '../ui.gyp:ui', 20 '../ui.gyp:ui',
21 '../ui.gyp:ui_resources', 21 '../ui.gyp:ui_resources',
22 ], 22 ],
23 'defines': [ 23 'defines': [
24 'AURA_IMPLEMENTATION', 24 'AURA_IMPLEMENTATION',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 'aura_switches.cc', 27 'aura_switches.cc',
28 'aura_switches.h', 28 'aura_switches.h',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 }, 159 },
160 { 160 {
161 'target_name': 'aura_demo', 161 'target_name': 'aura_demo',
162 'type': 'executable', 162 'type': 'executable',
163 'dependencies': [ 163 'dependencies': [
164 '../../base/base.gyp:base', 164 '../../base/base.gyp:base',
165 '../../base/base.gyp:base_i18n', 165 '../../base/base.gyp:base_i18n',
166 '../../skia/skia.gyp:skia', 166 '../../skia/skia.gyp:skia',
167 '../../third_party/icu/icu.gyp:icui18n', 167 '../../third_party/icu/icu.gyp:icui18n',
168 '../../third_party/icu/icu.gyp:icuuc', 168 '../../third_party/icu/icu.gyp:icuuc',
169 '../gfx/compositor/compositor.gyp:compositor', 169 '../compositor/compositor.gyp:compositor',
170 '../gfx/compositor/compositor.gyp:compositor_test_support', 170 '../compositor/compositor.gyp:compositor_test_support',
171 '../ui.gyp:gfx_resources', 171 '../ui.gyp:gfx_resources',
172 '../ui.gyp:ui', 172 '../ui.gyp:ui',
173 '../ui.gyp:ui_resources', 173 '../ui.gyp:ui_resources',
174 'aura', 174 'aura',
175 ], 175 ],
176 'include_dirs': [ 176 'include_dirs': [
177 '..', 177 '..',
178 ], 178 ],
179 'sources': [ 179 'sources': [
180 'demo/demo_main.cc', 180 'demo/demo_main.cc',
181 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 181 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
182 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 182 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
183 ], 183 ],
184 }, 184 },
185 { 185 {
186 'target_name': 'aura_unittests', 186 'target_name': 'aura_unittests',
187 'type': 'executable', 187 'type': 'executable',
188 'dependencies': [ 188 'dependencies': [
189 '../../base/base.gyp:test_support_base', 189 '../../base/base.gyp:test_support_base',
190 '../../chrome/chrome_resources.gyp:packed_resources', 190 '../../chrome/chrome_resources.gyp:packed_resources',
191 '../../skia/skia.gyp:skia', 191 '../../skia/skia.gyp:skia',
192 '../../testing/gtest.gyp:gtest', 192 '../../testing/gtest.gyp:gtest',
193 '../gfx/compositor/compositor.gyp:compositor_test_support', 193 '../compositor/compositor.gyp:compositor_test_support',
194 '../gfx/compositor/compositor.gyp:compositor', 194 '../compositor/compositor.gyp:compositor',
195 '../gfx/gl/gl.gyp:gl', 195 '../gfx/gl/gl.gyp:gl',
196 '../ui.gyp:gfx_resources', 196 '../ui.gyp:gfx_resources',
197 '../ui.gyp:ui', 197 '../ui.gyp:ui',
198 '../ui.gyp:ui_resources', 198 '../ui.gyp:ui_resources',
199 'test_support_aura', 199 'test_support_aura',
200 'aura', 200 'aura',
201 ], 201 ],
202 'include_dirs': [ 202 'include_dirs': [
203 '..', 203 '..',
204 ], 204 ],
(...skipping 13 matching lines...) Expand all
218 # osmesa GL implementation is used on linux. 218 # osmesa GL implementation is used on linux.
219 ['OS=="linux"', { 219 ['OS=="linux"', {
220 'dependencies': [ 220 'dependencies': [
221 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 221 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
222 ], 222 ],
223 }], 223 }],
224 ], 224 ],
225 }, 225 },
226 ], 226 ],
227 } 227 }
OLDNEW
« no previous file with comments | « content/test/content_test_suite.cc ('k') | ui/aura/demo/demo_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698