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

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
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | ui/base/cocoa/events_mac.mm » ('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 '../gfx/gfx.gyp:gfx', 22 '../gfx/gfx.gyp:gfx',
22 '../ui.gyp:ui', 23 '../ui.gyp:ui',
23 '../ui.gyp:ui_resources', 24 '../ui.gyp:ui_resources',
24 ], 25 ],
25 'defines': [ 26 'defines': [
26 'AURA_IMPLEMENTATION', 27 'AURA_IMPLEMENTATION',
27 ], 28 ],
28 'sources': [ 29 'sources': [
29 'client/activation_change_observer.h', 30 'client/activation_change_observer.h',
30 'client/activation_change_observer.cc', 31 'client/activation_change_observer.cc',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 ], 119 ],
119 }], 120 }],
120 ], 121 ],
121 }, 122 },
122 { 123 {
123 'target_name': 'aura_test_support', 124 'target_name': 'aura_test_support',
124 'type': 'static_library', 125 'type': 'static_library',
125 'dependencies': [ 126 'dependencies': [
126 '../../skia/skia.gyp:skia', 127 '../../skia/skia.gyp:skia',
127 '../../testing/gtest.gyp:gtest', 128 '../../testing/gtest.gyp:gtest',
129 '../events/events.gyp:events',
128 '../gfx/gfx.gyp:gfx', 130 '../gfx/gfx.gyp:gfx',
129 '../ui.gyp:ui', 131 '../ui.gyp:ui',
130 '../ui.gyp:ui_test_support', 132 '../ui.gyp:ui_test_support',
131 'aura', 133 'aura',
132 'aura_test_support_pak', 134 'aura_test_support_pak',
133 ], 135 ],
134 'include_dirs': [ 136 'include_dirs': [
135 '..', 137 '..',
136 ], 138 ],
137 'sources': [ 139 'sources': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'target_name': 'aura_demo', 204 'target_name': 'aura_demo',
203 'type': 'executable', 205 'type': 'executable',
204 'dependencies': [ 206 'dependencies': [
205 '../../base/base.gyp:base', 207 '../../base/base.gyp:base',
206 '../../base/base.gyp:base_i18n', 208 '../../base/base.gyp:base_i18n',
207 '../../skia/skia.gyp:skia', 209 '../../skia/skia.gyp:skia',
208 '../../third_party/icu/icu.gyp:icui18n', 210 '../../third_party/icu/icu.gyp:icui18n',
209 '../../third_party/icu/icu.gyp:icuuc', 211 '../../third_party/icu/icu.gyp:icuuc',
210 '../compositor/compositor.gyp:compositor', 212 '../compositor/compositor.gyp:compositor',
211 '../compositor/compositor.gyp:compositor_test_support', 213 '../compositor/compositor.gyp:compositor_test_support',
214 '../events/events.gyp:events',
212 '../gfx/gfx.gyp:gfx', 215 '../gfx/gfx.gyp:gfx',
213 '../ui.gyp:ui', 216 '../ui.gyp:ui',
214 '../ui.gyp:ui_resources', 217 '../ui.gyp:ui_resources',
215 '../../ipc/ipc.gyp:ipc', 218 '../../ipc/ipc.gyp:ipc',
216 'aura', 219 'aura',
217 'aura_test_support', 220 'aura_test_support',
218 ], 221 ],
219 'include_dirs': [ 222 'include_dirs': [
220 '..', 223 '..',
221 ], 224 ],
222 'sources': [ 225 'sources': [
223 'demo/demo_main.cc', 226 'demo/demo_main.cc',
224 ], 227 ],
225 }, 228 },
226 { 229 {
227 'target_name': 'aura_bench', 230 'target_name': 'aura_bench',
228 'type': 'executable', 231 'type': 'executable',
229 'dependencies': [ 232 'dependencies': [
230 '../../base/base.gyp:base', 233 '../../base/base.gyp:base',
231 '../../base/base.gyp:base_i18n', 234 '../../base/base.gyp:base_i18n',
232 '../../skia/skia.gyp:skia', 235 '../../skia/skia.gyp:skia',
233 '../../third_party/icu/icu.gyp:icui18n', 236 '../../third_party/icu/icu.gyp:icui18n',
234 '../../third_party/icu/icu.gyp:icuuc', 237 '../../third_party/icu/icu.gyp:icuuc',
235 '../compositor/compositor.gyp:compositor', 238 '../compositor/compositor.gyp:compositor',
236 '../compositor/compositor.gyp:compositor_test_support', 239 '../compositor/compositor.gyp:compositor_test_support',
240 '../events/events.gyp:events',
237 '../gfx/gfx.gyp:gfx', 241 '../gfx/gfx.gyp:gfx',
238 '../ui.gyp:ui', 242 '../ui.gyp:ui',
239 '../ui.gyp:ui_resources', 243 '../ui.gyp:ui_resources',
240 'aura', 244 'aura',
241 'aura_test_support', 245 'aura_test_support',
242 ], 246 ],
243 'include_dirs': [ 247 'include_dirs': [
244 '..', 248 '..',
245 ], 249 ],
246 'sources': [ 250 'sources': [
247 'bench/bench_main.cc', 251 'bench/bench_main.cc',
248 ], 252 ],
249 }, 253 },
250 { 254 {
251 'target_name': 'aura_unittests', 255 'target_name': 'aura_unittests',
252 'type': 'executable', 256 'type': 'executable',
253 'dependencies': [ 257 'dependencies': [
254 '../../base/base.gyp:test_support_base', 258 '../../base/base.gyp:test_support_base',
255 '../../chrome/chrome_resources.gyp:packed_resources', 259 '../../chrome/chrome_resources.gyp:packed_resources',
256 '../../skia/skia.gyp:skia', 260 '../../skia/skia.gyp:skia',
257 '../../testing/gtest.gyp:gtest', 261 '../../testing/gtest.gyp:gtest',
258 '../compositor/compositor.gyp:compositor_test_support', 262 '../compositor/compositor.gyp:compositor_test_support',
259 '../compositor/compositor.gyp:compositor', 263 '../compositor/compositor.gyp:compositor',
264 '../events/events.gyp:events',
260 '../gfx/gfx.gyp:gfx', 265 '../gfx/gfx.gyp:gfx',
261 '../gl/gl.gyp:gl', 266 '../gl/gl.gyp:gl',
262 '../ui.gyp:ui', 267 '../ui.gyp:ui',
263 '../ui.gyp:ui_resources', 268 '../ui.gyp:ui_resources',
264 '../ui.gyp:ui_test_support', 269 '../ui.gyp:ui_test_support',
265 'aura_test_support', 270 'aura_test_support',
266 'aura', 271 'aura',
267 ], 272 ],
268 'include_dirs': [ 273 'include_dirs': [
269 '..', 274 '..',
(...skipping 16 matching lines...) Expand all
286 ['OS=="linux" and linux_use_tcmalloc==1', { 291 ['OS=="linux" and linux_use_tcmalloc==1', {
287 'dependencies': [ 292 'dependencies': [
288 # See http://crbug.com/162998#c4 for why this is needed. 293 # See http://crbug.com/162998#c4 for why this is needed.
289 '../../base/allocator/allocator.gyp:allocator', 294 '../../base/allocator/allocator.gyp:allocator',
290 ], 295 ],
291 }], 296 }],
292 ], 297 ],
293 }, 298 },
294 ], 299 ],
295 } 300 }
OLDNEW
« no previous file with comments | « ui/app_list/app_list.gyp ('k') | ui/base/cocoa/events_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698