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

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

Issue 275273002: x11: Split the gfx_x11 target into its own gyp file. (Closed) 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 {
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'x/device_data_manager.h', 56 'x/device_data_manager.h',
57 'x/device_list_cache_x.cc', 57 'x/device_list_cache_x.cc',
58 'x/device_list_cache_x.h', 58 'x/device_list_cache_x.h',
59 'x/touch_factory_x11.cc', 59 'x/touch_factory_x11.cc',
60 'x/touch_factory_x11.h', 60 'x/touch_factory_x11.h',
61 ], 61 ],
62 'conditions': [ 62 'conditions': [
63 ['use_x11==1', { 63 ['use_x11==1', {
64 'dependencies': [ 64 'dependencies': [
65 '../../build/linux/system.gyp:x11', 65 '../../build/linux/system.gyp:x11',
66 '../gfx/gfx.gyp:gfx_x11', 66 '../gfx/x/gfx_x11.gyp:gfx_x11',
67 ], 67 ],
68 }], 68 }],
69 ], 69 ],
70 }, 70 },
71 { 71 {
72 'target_name': 'events', 72 'target_name': 'events',
73 'type': '<(component)', 73 'type': '<(component)',
74 'dependencies': [ 74 'dependencies': [
75 '<(DEPTH)/base/base.gyp:base', 75 '<(DEPTH)/base/base.gyp:base',
76 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 76 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 'linux/text_edit_key_bindings_delegate_auralinux.cc', 185 'linux/text_edit_key_bindings_delegate_auralinux.cc',
186 'linux/text_edit_key_bindings_delegate_auralinux.h', 186 'linux/text_edit_key_bindings_delegate_auralinux.h',
187 ], 187 ],
188 }], 188 }],
189 ['use_x11==1', { 189 ['use_x11==1', {
190 'sources!': [ 190 'sources!': [
191 'platform/platform_event_source_stub.cc', 191 'platform/platform_event_source_stub.cc',
192 ], 192 ],
193 'dependencies': [ 193 'dependencies': [
194 '../../build/linux/system.gyp:x11', 194 '../../build/linux/system.gyp:x11',
195 '../gfx/gfx.gyp:gfx_x11', 195 '../gfx/x/gfx_x11.gyp:gfx_x11',
196 ], 196 ],
197 }], 197 }],
198 ['use_glib==1', { 198 ['use_glib==1', {
199 'dependencies': [ 199 'dependencies': [
200 '../../build/linux/system.gyp:glib', 200 '../../build/linux/system.gyp:glib',
201 ], 201 ],
202 'sources!': [ 202 'sources!': [
203 'platform/x11/x11_event_source_libevent.cc', 203 'platform/x11/x11_event_source_libevent.cc',
204 ], 204 ],
205 }, { 205 }, {
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 'test/test_event_handler.h', 310 'test/test_event_handler.h',
311 'test/test_event_processor.cc', 311 'test/test_event_processor.cc',
312 'test/test_event_processor.h', 312 'test/test_event_processor.h',
313 'test/test_event_target.cc', 313 'test/test_event_target.cc',
314 'test/test_event_target.h', 314 'test/test_event_target.h',
315 ], 315 ],
316 'conditions': [ 316 'conditions': [
317 ['use_x11==1', { 317 ['use_x11==1', {
318 'dependencies': [ 318 'dependencies': [
319 '../../build/linux/system.gyp:x11', 319 '../../build/linux/system.gyp:x11',
320 '../gfx/gfx.gyp:gfx_x11', 320 '../gfx/x/gfx_x11.gyp:gfx_x11',
321 ], 321 ],
322 }], 322 }],
323 ['OS=="ios"', { 323 ['OS=="ios"', {
324 # The cocoa files don't apply to iOS. 324 # The cocoa files don't apply to iOS.
325 'sources/': [['exclude', 'cocoa']], 325 'sources/': [['exclude', 'cocoa']],
326 }], 326 }],
327 ], 327 ],
328 }, 328 },
329 { 329 {
330 'target_name': 'events_unittests', 330 'target_name': 'events_unittests',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 ], 397 ],
398 'variables': { 398 'variables': {
399 'test_suite_name': 'events_unittests', 399 'test_suite_name': 'events_unittests',
400 }, 400 },
401 'includes': [ '../../build/apk_test.gypi' ], 401 'includes': [ '../../build/apk_test.gypi' ],
402 }, 402 },
403 ], 403 ],
404 }], 404 }],
405 ], 405 ],
406 } 406 }
OLDNEW
« no previous file with comments | « ui/compositor/compositor.gyp ('k') | ui/gfx/gfx.gyp » ('j') | ui/gfx/x/gfx_x11.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698