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

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

Issue 57433011: Restructure the events target into two components: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 '../events/events.gyp:events', 21 '../events/events.gyp:events',
22 '../events/events.gyp:events_base',
22 '../gfx/gfx.gyp:gfx', 23 '../gfx/gfx.gyp:gfx',
23 '../ui.gyp:ui', 24 '../ui.gyp:ui',
24 '../ui.gyp:ui_resources', 25 '../ui.gyp:ui_resources',
25 ], 26 ],
26 'defines': [ 27 'defines': [
27 'AURA_IMPLEMENTATION', 28 'AURA_IMPLEMENTATION',
28 ], 29 ],
29 'sources': [ 30 'sources': [
30 'client/activation_change_observer.h', 31 'client/activation_change_observer.h',
31 'client/activation_change_observer.cc', 32 'client/activation_change_observer.cc',
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 }], 119 }],
119 ['OS=="win"', { 120 ['OS=="win"', {
120 'dependencies': [ 121 'dependencies': [
121 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages', 122 '../metro_viewer/metro_viewer.gyp:metro_viewer_messages',
122 '../../ipc/ipc.gyp:ipc', 123 '../../ipc/ipc.gyp:ipc',
123 ], 124 ],
124 'sources!': [ 125 'sources!': [
125 'input_state_lookup.cc', 126 'input_state_lookup.cc',
126 ], 127 ],
127 }], 128 }],
128 ['use_ozone==1', {
129 'dependencies': [
130 '../ozone/ozone.gyp:ozone',
131 ],
132 }],
133 ], 129 ],
134 }, 130 },
135 { 131 {
136 'target_name': 'aura_test_support', 132 'target_name': 'aura_test_support',
137 'type': 'static_library', 133 'type': 'static_library',
138 'dependencies': [ 134 'dependencies': [
139 '../../skia/skia.gyp:skia', 135 '../../skia/skia.gyp:skia',
140 '../../testing/gtest.gyp:gtest', 136 '../../testing/gtest.gyp:gtest',
141 '../compositor/compositor.gyp:compositor_test_support', 137 '../compositor/compositor.gyp:compositor_test_support',
142 '../events/events.gyp:events', 138 '../events/events.gyp:events',
139 '../events/events.gyp:events_base',
143 '../gfx/gfx.gyp:gfx', 140 '../gfx/gfx.gyp:gfx',
144 '../ui.gyp:ui', 141 '../ui.gyp:ui',
145 '../ui_unittests.gyp:ui_test_support', 142 '../ui_unittests.gyp:ui_test_support',
146 'aura', 143 'aura',
147 'aura_test_support_pak', 144 'aura_test_support_pak',
148 ], 145 ],
149 'include_dirs': [ 146 'include_dirs': [
150 '..', 147 '..',
151 ], 148 ],
152 'sources': [ 149 'sources': [
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 'target_name': 'aura_unittests', 266 'target_name': 'aura_unittests',
270 'type': 'executable', 267 'type': 'executable',
271 'dependencies': [ 268 'dependencies': [
272 '../../base/base.gyp:test_support_base', 269 '../../base/base.gyp:test_support_base',
273 '../../chrome/chrome_resources.gyp:packed_resources', 270 '../../chrome/chrome_resources.gyp:packed_resources',
274 '../../skia/skia.gyp:skia', 271 '../../skia/skia.gyp:skia',
275 '../../testing/gtest.gyp:gtest', 272 '../../testing/gtest.gyp:gtest',
276 '../compositor/compositor.gyp:compositor_test_support', 273 '../compositor/compositor.gyp:compositor_test_support',
277 '../compositor/compositor.gyp:compositor', 274 '../compositor/compositor.gyp:compositor',
278 '../events/events.gyp:events', 275 '../events/events.gyp:events',
276 '../events/events.gyp:events_base',
279 '../gfx/gfx.gyp:gfx', 277 '../gfx/gfx.gyp:gfx',
280 '../gl/gl.gyp:gl', 278 '../gl/gl.gyp:gl',
281 '../ui.gyp:ui', 279 '../ui.gyp:ui',
282 '../ui.gyp:ui_resources', 280 '../ui.gyp:ui_resources',
283 '../ui_unittests.gyp:ui_test_support', 281 '../ui_unittests.gyp:ui_test_support',
284 'aura_test_support', 282 'aura_test_support',
285 'aura', 283 'aura',
286 ], 284 ],
287 'include_dirs': [ 285 'include_dirs': [
288 '..', 286 '..',
(...skipping 16 matching lines...) Expand all
305 ['OS=="linux" and linux_use_tcmalloc==1', { 303 ['OS=="linux" and linux_use_tcmalloc==1', {
306 'dependencies': [ 304 'dependencies': [
307 # See http://crbug.com/162998#c4 for why this is needed. 305 # See http://crbug.com/162998#c4 for why this is needed.
308 '../../base/allocator/allocator.gyp:allocator', 306 '../../base/allocator/allocator.gyp:allocator',
309 ], 307 ],
310 }], 308 }],
311 ], 309 ],
312 }, 310 },
313 ], 311 ],
314 } 312 }
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