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

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

Issue 25015003: gfx: Create a separate gfx component out of ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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/app_list/app_list.gyp ('k') | ui/compositor/compositor.gyp » ('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 '../../cc/cc.gyp:cc', 17 '../../cc/cc.gyp:cc',
18 '../../gpu/gpu.gyp:gpu', 18 '../../gpu/gpu.gyp:gpu',
19 '../../skia/skia.gyp:skia', 19 '../../skia/skia.gyp:skia',
20 '../compositor/compositor.gyp:compositor', 20 '../compositor/compositor.gyp:compositor',
21 '../gfx/gfx.gyp:gfx',
21 '../ui.gyp:ui', 22 '../ui.gyp:ui',
22 '../ui.gyp:ui_resources', 23 '../ui.gyp:ui_resources',
23 ], 24 ],
24 'defines': [ 25 'defines': [
25 'AURA_IMPLEMENTATION', 26 'AURA_IMPLEMENTATION',
26 ], 27 ],
27 'sources': [ 28 'sources': [
28 'client/activation_change_observer.h', 29 'client/activation_change_observer.h',
29 'client/activation_change_observer.cc', 30 'client/activation_change_observer.cc',
30 'client/activation_client.cc', 31 'client/activation_client.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 ], 118 ],
118 }], 119 }],
119 ], 120 ],
120 }, 121 },
121 { 122 {
122 'target_name': 'aura_test_support', 123 'target_name': 'aura_test_support',
123 'type': 'static_library', 124 'type': 'static_library',
124 'dependencies': [ 125 'dependencies': [
125 '../../skia/skia.gyp:skia', 126 '../../skia/skia.gyp:skia',
126 '../../testing/gtest.gyp:gtest', 127 '../../testing/gtest.gyp:gtest',
128 '../gfx/gfx.gyp:gfx',
127 '../ui.gyp:ui', 129 '../ui.gyp:ui',
128 '../ui.gyp:ui_test_support', 130 '../ui.gyp:ui_test_support',
129 'aura', 131 'aura',
130 'aura_test_support_pak', 132 'aura_test_support_pak',
131 ], 133 ],
132 'include_dirs': [ 134 'include_dirs': [
133 '..', 135 '..',
134 ], 136 ],
135 'sources': [ 137 'sources': [
136 'test/aura_test_base.cc', 138 'test/aura_test_base.cc',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 'target_name': 'aura_demo', 202 'target_name': 'aura_demo',
201 'type': 'executable', 203 'type': 'executable',
202 'dependencies': [ 204 'dependencies': [
203 '../../base/base.gyp:base', 205 '../../base/base.gyp:base',
204 '../../base/base.gyp:base_i18n', 206 '../../base/base.gyp:base_i18n',
205 '../../skia/skia.gyp:skia', 207 '../../skia/skia.gyp:skia',
206 '../../third_party/icu/icu.gyp:icui18n', 208 '../../third_party/icu/icu.gyp:icui18n',
207 '../../third_party/icu/icu.gyp:icuuc', 209 '../../third_party/icu/icu.gyp:icuuc',
208 '../compositor/compositor.gyp:compositor', 210 '../compositor/compositor.gyp:compositor',
209 '../compositor/compositor.gyp:compositor_test_support', 211 '../compositor/compositor.gyp:compositor_test_support',
212 '../gfx/gfx.gyp:gfx',
210 '../ui.gyp:ui', 213 '../ui.gyp:ui',
211 '../ui.gyp:ui_resources', 214 '../ui.gyp:ui_resources',
212 '../../ipc/ipc.gyp:ipc', 215 '../../ipc/ipc.gyp:ipc',
213 'aura', 216 'aura',
214 'aura_test_support', 217 'aura_test_support',
215 ], 218 ],
216 'include_dirs': [ 219 'include_dirs': [
217 '..', 220 '..',
218 ], 221 ],
219 'sources': [ 222 'sources': [
220 'demo/demo_main.cc', 223 'demo/demo_main.cc',
221 ], 224 ],
222 }, 225 },
223 { 226 {
224 'target_name': 'aura_bench', 227 'target_name': 'aura_bench',
225 'type': 'executable', 228 'type': 'executable',
226 'dependencies': [ 229 'dependencies': [
227 '../../base/base.gyp:base', 230 '../../base/base.gyp:base',
228 '../../base/base.gyp:base_i18n', 231 '../../base/base.gyp:base_i18n',
229 '../../skia/skia.gyp:skia', 232 '../../skia/skia.gyp:skia',
230 '../../third_party/icu/icu.gyp:icui18n', 233 '../../third_party/icu/icu.gyp:icui18n',
231 '../../third_party/icu/icu.gyp:icuuc', 234 '../../third_party/icu/icu.gyp:icuuc',
232 '../compositor/compositor.gyp:compositor', 235 '../compositor/compositor.gyp:compositor',
233 '../compositor/compositor.gyp:compositor_test_support', 236 '../compositor/compositor.gyp:compositor_test_support',
237 '../gfx/gfx.gyp:gfx',
234 '../ui.gyp:ui', 238 '../ui.gyp:ui',
235 '../ui.gyp:ui_resources', 239 '../ui.gyp:ui_resources',
236 'aura', 240 'aura',
237 'aura_test_support', 241 'aura_test_support',
238 ], 242 ],
239 'include_dirs': [ 243 'include_dirs': [
240 '..', 244 '..',
241 ], 245 ],
242 'sources': [ 246 'sources': [
243 'bench/bench_main.cc', 247 'bench/bench_main.cc',
244 ], 248 ],
245 }, 249 },
246 { 250 {
247 'target_name': 'aura_unittests', 251 'target_name': 'aura_unittests',
248 'type': 'executable', 252 'type': 'executable',
249 'dependencies': [ 253 'dependencies': [
250 '../../base/base.gyp:test_support_base', 254 '../../base/base.gyp:test_support_base',
251 '../../chrome/chrome_resources.gyp:packed_resources', 255 '../../chrome/chrome_resources.gyp:packed_resources',
252 '../../skia/skia.gyp:skia', 256 '../../skia/skia.gyp:skia',
253 '../../testing/gtest.gyp:gtest', 257 '../../testing/gtest.gyp:gtest',
254 '../compositor/compositor.gyp:compositor_test_support', 258 '../compositor/compositor.gyp:compositor_test_support',
255 '../compositor/compositor.gyp:compositor', 259 '../compositor/compositor.gyp:compositor',
260 '../gfx/gfx.gyp:gfx',
256 '../gl/gl.gyp:gl', 261 '../gl/gl.gyp:gl',
257 '../ui.gyp:ui', 262 '../ui.gyp:ui',
258 '../ui.gyp:ui_resources', 263 '../ui.gyp:ui_resources',
259 '../ui.gyp:ui_test_support', 264 '../ui.gyp:ui_test_support',
260 'aura_test_support', 265 'aura_test_support',
261 'aura', 266 'aura',
262 ], 267 ],
263 'include_dirs': [ 268 'include_dirs': [
264 '..', 269 '..',
265 ], 270 ],
(...skipping 15 matching lines...) Expand all
281 ['OS=="linux" and linux_use_tcmalloc==1', { 286 ['OS=="linux" and linux_use_tcmalloc==1', {
282 'dependencies': [ 287 'dependencies': [
283 # See http://crbug.com/162998#c4 for why this is needed. 288 # See http://crbug.com/162998#c4 for why this is needed.
284 '../../base/allocator/allocator.gyp:allocator', 289 '../../base/allocator/allocator.gyp:allocator',
285 ], 290 ],
286 }], 291 }],
287 ], 292 ],
288 }, 293 },
289 ], 294 ],
290 } 295 }
OLDNEW
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | ui/compositor/compositor.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698