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

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

Issue 255823009: [WIP] ui/window: Master CL. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
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 '../../gpu/gpu.gyp:gpu', 17 '../../gpu/gpu.gyp:gpu',
18 '../../skia/skia.gyp:skia', 18 '../../skia/skia.gyp:skia',
19 '../base/ui_base.gyp:ui_base', 19 '../base/ui_base.gyp:ui_base',
20 '../compositor/compositor.gyp:compositor', 20 '../compositor/compositor.gyp:compositor',
21 '../events/events.gyp:events', 21 '../events/events.gyp:events',
22 '../events/events.gyp:events_base', 22 '../events/events.gyp:events_base',
23 '../gfx/gfx.gyp:gfx', 23 '../gfx/gfx.gyp:gfx',
24 '../gfx/gfx.gyp:gfx_geometry', 24 '../gfx/gfx.gyp:gfx_geometry',
25 '../window/window.gyp:window',
25 ], 26 ],
26 'defines': [ 27 'defines': [
27 'AURA_IMPLEMENTATION', 28 'AURA_IMPLEMENTATION',
28 ], 29 ],
29 'sources': [ 30 'sources': [
30 'client/aura_constants.cc', 31 'client/aura_constants.cc',
31 'client/aura_constants.h', 32 'client/aura_constants.h',
32 'client/capture_client.cc', 33 'client/capture_client.cc',
33 'client/capture_client.h', 34 'client/capture_client.h',
34 'client/capture_delegate.h', 35 'client/capture_delegate.h',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 ], 205 ],
205 'include_dirs': [ 206 'include_dirs': [
206 '..', 207 '..',
207 ], 208 ],
208 'sources': [ 209 'sources': [
209 'demo/demo_main.cc', 210 'demo/demo_main.cc',
210 ], 211 ],
211 'conditions': [ 212 'conditions': [
212 ['use_x11==1', { 213 ['use_x11==1', {
213 'dependencies': [ 214 'dependencies': [
214 '../gfx/gfx.gyp:gfx_x11', 215 '../gfx/x/gfx_x11.gyp:gfx_x11',
215 ], 216 ],
216 }], 217 }],
217 ] 218 ]
218 }, 219 },
219 { 220 {
220 'target_name': 'aura_bench', 221 'target_name': 'aura_bench',
221 'type': 'executable', 222 'type': 'executable',
222 'dependencies': [ 223 'dependencies': [
223 '../../base/base.gyp:base', 224 '../../base/base.gyp:base',
224 '../../base/base.gyp:base_i18n', 225 '../../base/base.gyp:base_i18n',
(...skipping 12 matching lines...) Expand all
237 ], 238 ],
238 'include_dirs': [ 239 'include_dirs': [
239 '..', 240 '..',
240 ], 241 ],
241 'sources': [ 242 'sources': [
242 'bench/bench_main.cc', 243 'bench/bench_main.cc',
243 ], 244 ],
244 'conditions': [ 245 'conditions': [
245 ['use_x11==1', { 246 ['use_x11==1', {
246 'dependencies': [ 247 'dependencies': [
247 '../gfx/gfx.gyp:gfx_x11', 248 '../gfx/x/gfx_x11.gyp:gfx_x11',
248 ], 249 ],
249 }], 250 }],
250 ] 251 ]
251 }, 252 },
252 { 253 {
253 'target_name': 'aura_unittests', 254 'target_name': 'aura_unittests',
254 'type': 'executable', 255 'type': 'executable',
255 'dependencies': [ 256 'dependencies': [
256 '../../base/base.gyp:test_support_base', 257 '../../base/base.gyp:test_support_base',
257 '../../skia/skia.gyp:skia', 258 '../../skia/skia.gyp:skia',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { 290 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', {
290 'dependencies': [ 291 'dependencies': [
291 # See http://crbug.com/162998#c4 for why this is needed. 292 # See http://crbug.com/162998#c4 for why this is needed.
292 '../../base/allocator/allocator.gyp:allocator', 293 '../../base/allocator/allocator.gyp:allocator',
293 ], 294 ],
294 }], 295 }],
295 ], 296 ],
296 }, 297 },
297 ], 298 ],
298 } 299 }
OLDNEW
« no previous file with comments | « ui/aura/DEPS ('k') | ui/aura/env.cc » ('j') | ui/window/platform_window.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698