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

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

Issue 24788002: events: Make it a separate component from 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
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 '../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 '../events/events.gyp:events',
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 { 248 {
247 'target_name': 'aura_unittests', 249 'target_name': 'aura_unittests',
248 'type': 'executable', 250 'type': 'executable',
249 'dependencies': [ 251 'dependencies': [
250 '../../base/base.gyp:test_support_base', 252 '../../base/base.gyp:test_support_base',
251 '../../chrome/chrome_resources.gyp:packed_resources', 253 '../../chrome/chrome_resources.gyp:packed_resources',
252 '../../skia/skia.gyp:skia', 254 '../../skia/skia.gyp:skia',
253 '../../testing/gtest.gyp:gtest', 255 '../../testing/gtest.gyp:gtest',
254 '../compositor/compositor.gyp:compositor_test_support', 256 '../compositor/compositor.gyp:compositor_test_support',
255 '../compositor/compositor.gyp:compositor', 257 '../compositor/compositor.gyp:compositor',
258 '../events/events.gyp:events',
256 '../gl/gl.gyp:gl', 259 '../gl/gl.gyp:gl',
257 '../ui.gyp:ui', 260 '../ui.gyp:ui',
258 '../ui.gyp:ui_resources', 261 '../ui.gyp:ui_resources',
259 '../ui.gyp:ui_test_support', 262 '../ui.gyp:ui_test_support',
260 'aura_test_support', 263 'aura_test_support',
261 'aura', 264 'aura',
262 ], 265 ],
263 'include_dirs': [ 266 'include_dirs': [
264 '..', 267 '..',
265 ], 268 ],
(...skipping 15 matching lines...) Expand all
281 ['OS=="linux" and linux_use_tcmalloc==1', { 284 ['OS=="linux" and linux_use_tcmalloc==1', {
282 'dependencies': [ 285 'dependencies': [
283 # See http://crbug.com/162998#c4 for why this is needed. 286 # See http://crbug.com/162998#c4 for why this is needed.
284 '../../base/allocator/allocator.gyp:allocator', 287 '../../base/allocator/allocator.gyp:allocator',
285 ], 288 ],
286 }], 289 }],
287 ], 290 ],
288 }, 291 },
289 ], 292 ],
290 } 293 }
OLDNEW
« cc/cc.gyp ('K') | « ui/app_list/app_list.gyp ('k') | ui/events/events.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698